Skip to content

Commit

Permalink
indentation dmx
Browse files Browse the repository at this point in the history
  • Loading branch information
davy39 committed Jan 7, 2024
1 parent 3913cfa commit 50538e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/projets/dmx/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,17 +152,17 @@ Une librairie, uniquement valable pour le Raspberry Pico est en cours de dévelo
ay = analogio.AnalogIn(board.A1)

def range_map(x, in_min, in_max, out_min, out_max):
return (x - in_min) * (out_max - out_min) // (in_max - in_min) + out_min
return (x - in_min) * (out_max - out_min) // (in_max - in_min) + out_min

while True:
x=range_map(ax.value, 0, 4095, -127, 127)
y=range_map(ay.value, 0, 4095, -127, 127)
print("x", x, "y", y)
time.sleep(0.1)
x=range_map(ax.value, 0, 4095, -127, 127)
y=range_map(ay.value, 0, 4095, -127, 127)
print("x", x, "y", y)
time.sleep(0.1)
```

!!! note "Remarque"
Il n'y a que 4 Analog In avec le RP2040. Il peut être utile d'utiliser un multiplexeur comme le module hc4067.
Il n'y a que 4 Analog In avec le RP2040. Il peut être utile d'utiliser un multiplexeur comme le module hc4067.


??? note "Encodeurs rotatifs"
Expand Down

0 comments on commit 50538e6

Please sign in to comment.