Compare commits

...

2 Commits

Author SHA1 Message Date
root
6cdf28a761 CCC Backup. Unkown changes 2021-04-22 19:37:30 +02:00
5436c007d2 Moved button read to slowloop 2020-06-22 23:45:10 +02:00
28 changed files with 8 additions and 9 deletions

0
.clang-format Normal file → Executable file
View File

0
.gitignore vendored Normal file → Executable file
View File

0
.gitmodules vendored Normal file → Executable file
View File

0
.travis.yml Normal file → Executable file
View File

0
.vscode/extensions.json vendored Normal file → Executable file
View File

0
.vscode/settings.json vendored Normal file → Executable file
View File

0
CAD/LED Cylinder.ipt Normal file → Executable file
View File

0
CAD/LED ring.ipt Normal file → Executable file
View File

0
CAD/STL/LED Cylinder.stl Normal file → Executable file
View File

0
CAD/STL/SharpHolder.stl Normal file → Executable file
View File

0
CAD/STL/bulb base.stl Normal file → Executable file
View File

0
CAD/SharpHolder.ipt Normal file → Executable file
View File

0
CAD/base.ipt Normal file → Executable file
View File

0
CAD/bulb base.ipt Normal file → Executable file
View File

0
CAD/lamp.iam Normal file → Executable file
View File

0
CAD/mid plastig.ipt Normal file → Executable file
View File

0
CAD/shade.ipt Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

BIN
firmware.bin Executable file

Binary file not shown.

0
include/README Normal file → Executable file
View File

0
include/config.h Normal file → Executable file
View File

0
include/myled.h Normal file → Executable file
View File

0
lib/README Normal file → Executable file
View File

0
platformio.ini Normal file → Executable file
View File

0
src/config.cpp Normal file → Executable file
View File

3
src/main.cpp Normal file → Executable file
View File

@ -331,9 +331,9 @@ void slowLoop()
Serial.println("WiFi connection lost. Trying to reconnect...");
WiFi.reconnect();
}
button.read();
SensorData data = getDist();
evalDist(data);
myLed.run();
@ -347,7 +347,6 @@ void loop()
unsigned long t = millis();
static unsigned long lastT = t;
button.read();
if (t - lastT > 50)
{
lastT = t;

0
src/myled.cpp Normal file → Executable file
View File

0
test/README Normal file → Executable file
View File