- ajouté le petit test d'Alex pour les LED RGB

- commencé à tester les LED RGB de manière simple
- descendu un nouveau firmware pour les LED RGB
This commit is contained in:
Christian Zufferey
2018-11-06 08:15:52 +01:00
parent 8abc823276
commit 1d839f8aaa
20 changed files with 350 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
-- fonction dir() pour afficher les fichiers dans la flash
print("\n dir.lua zf180826.1019 \n")
function dir()
print("\n-------------------------------")
l=file.list() i=0
for k,v in pairs(l) do
i=i+v
print(k..string.rep(" ",19-string.len(k)).." : "..v.." bytes")
end
print("-------------------------------")
print('\nUsed: '..i..' bytes\nusage: dofile("file.lua")\n')
end
dir()