- ajouté les fichiers Lua à Hugo :-)

This commit is contained in:
Christian Zufferey
2018-07-22 12:47:37 +02:00
parent 4608e4092e
commit 26d3f422cd
31 changed files with 1346 additions and 0 deletions

11
Hugo/led_intensite.lua Executable file
View File

@@ -0,0 +1,11 @@
--Programme pour choisir l'intensité des leds
--hv20180711.1702
zpin1=1
zpin2=2
pwm.setup(zpin1, 100, 1022)
pwm.start(zpin1)
pwm.setup(zpin2, 100, 100)
pwm.start(zpin2)