Pleins d'ajouts ;-)

* Ajouté le dossier zpackage contenant tout ce qu'il faut pour bien débuter un nouveau projet NodeMCU
* Ajouté un dossier, générateur de signaux pour le workshop sur l'oscilloscope
* Rangé le dossier genefunc
* Ajouté le dossier AD9833 pour commencer à travailler avec le module générateur de fonction AD9833
This commit is contained in:
Christian Zufferey
2019-05-05 11:27:42 +02:00
parent f4e35aaad5
commit e5f140f0c1
99 changed files with 2567 additions and 8 deletions

View File

@@ -2,11 +2,11 @@
-- tout sur la couleur: https://www.w3schools.com/colors/default.asp
-- roue des couleurs: https://iro.js.org/?ref=oldsite
print("\n a_guirlande.lua zf181216.0131 \n")
print("\n a_guirlande.lua zf190428.1824 \n")
znbleds_max=300
znbleds=300
zstep=5
zstep=3
zpower=1
zleds={}

View File

@@ -1,6 +1,6 @@
-- Scripts à charger après le boot pour démarrer son appli
print("\n boot.lua zf181216.0028 \n")
print("\n boot.lua zf190428.1823 \n")
function heartbeat()
f= "flash_led_xfois.lua" if file.exists(f) then dofile(f) end
@@ -11,11 +11,12 @@ function heartbeat()
end)
end
f= "wifi_ap_stop.lua" if file.exists(f) then dofile(f) end
f= "wifi_cli_conf.lua" if file.exists(f) then dofile(f) end
f= "wifi_cli_start.lua" if file.exists(f) then dofile(f) end
f= "telnet_srv2.lua" if file.exists(f) then dofile(f) end
f= "web_ide2.lua" if file.exists(f) then dofile(f) end
--f= "wifi_ap_stop.lua" if file.exists(f) then dofile(f) end
f= "wifi_stop.lua" if file.exists(f) then dofile(f) end
--f= "wifi_cli_conf.lua" if file.exists(f) then dofile(f) end
--f= "wifi_cli_start.lua" if file.exists(f) then dofile(f) end
--f= "telnet_srv2.lua" if file.exists(f) then dofile(f) end
--f= "web_ide2.lua" if file.exists(f) then dofile(f) end
--f= "az_init_led.lua" if file.exists(f) then dofile(f) end
--f= "webleds.lua" if file.exists(f) then dofile(f) end
f= "a_guirlande.lua" if file.exists(f) then dofile(f) end