From 50538e6d215c6dcd840a5ce36f28873d939016e2 Mon Sep 17 00:00:00 2001 From: davy39 Date: Sun, 7 Jan 2024 18:05:11 +0100 Subject: [PATCH] indentation dmx --- docs/projets/dmx/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/projets/dmx/index.md b/docs/projets/dmx/index.md index acfad94fa..8438ca0f3 100644 --- a/docs/projets/dmx/index.md +++ b/docs/projets/dmx/index.md @@ -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"