5 Commits
0.11 ... 0.13

Author SHA1 Message Date
Christian Mittring
8755571ef4 [Updated]: Manual 2018-04-19 22:20:20 +02:00
4d7656e936 Update Readme
Update Readme
2018-04-19 22:16:53 +02:00
Christian Mittring
130ee5f5d0 [Updated]: Manual 2018-04-19 22:13:42 +02:00
Christian Mittring
dabb003733 [Added] Manual 2018-04-19 17:01:48 +02:00
Christian Mittring
e43dbf1349 [Fixed]: Display Long Text wrong start. 2018-04-17 11:20:40 +02:00
4 changed files with 27 additions and 3 deletions

View File

@@ -17,7 +17,7 @@
//Default Settings //Default Settings
String Hardware = "0.12"; String Hardware = "0.12";
String Software = "0.11"; String Software = "0.12";
String ntp_server = "ntp2.uni-augsburg.de"; String ntp_server = "ntp2.uni-augsburg.de";
bool ntp_update = true; bool ntp_update = true;

View File

@@ -23,7 +23,7 @@ void display_text(String text1, String text2){
int freespace(String text){ int freespace(String text){
if (text.length() > 14) if (text.length() > 14)
{ {
return 1; return 0;
} }
else{ else{
int freespace = 16 - text.length(); int freespace = 16 - text.length();

BIN
LichtWeckerAnleitung.docx Normal file

Binary file not shown.

View File

@@ -1,3 +1,27 @@
# Licht_Wecker # Licht_Wecker
Licht Wecker für die Bradls Licht Wecker für die Bradls
## Verwendete Bauteile:
NodeMcu ESP8266
I2C LCD Display 1602
DS3231 Real Time Clock Modul
30 WS2801 LEDs
MP3 Sound Modul 3W
## Pin-Verschaltung:
### Taster (geschaltet gegen GND):
TIME: GPIO 3
SET: GPIO 0
ALARM: GPIO 2
### Sound Modul (5V Spannungsversorung über Transistor)
GPIO 9
### LCD:
SDA: GPIO 4
SDC: GPIO 5
### DS3231:
SDA: GPIO 4
SDC: GPIO 5
### WS2801:
DATA_PIN: GPIO 14
CLOCK_PIN: GPIO 13