Compare commits
3 Commits
fd493ee596
...
0a3a39a7e8
Author | SHA1 | Date |
---|---|---|
Siwat Sirichai | 0a3a39a7e8 | |
Siwat Sirichai | 771642c3db | |
Siwat Sirichai | 8a112e8f13 |
|
@ -12,7 +12,7 @@
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
board = wt32-eth01
|
board = wt32-eth01
|
||||||
framework = arduino
|
framework = arduino
|
||||||
lib_deps = siwats/ESPMegaPROR3@^1.1.5
|
lib_deps = siwats/ESPMegaPROR3@^1.2.1
|
||||||
knolleary/PubSubClient@^2.8
|
knolleary/PubSubClient@^2.8
|
||||||
ivanseidel/ArduinoThread@^2.1.1
|
ivanseidel/ArduinoThread@^2.1.1
|
||||||
arduino-libraries/Arduino_BuiltIn@^1.0.0
|
arduino-libraries/Arduino_BuiltIn@^1.0.0
|
||||||
|
@ -21,3 +21,4 @@ lib_deps = siwats/ESPMegaPROR3@^1.1.5
|
||||||
robtillaart/DHTNEW@^0.4.18
|
robtillaart/DHTNEW@^0.4.18
|
||||||
seithan/Easy Nextion Library@^1.0.6
|
seithan/Easy Nextion Library@^1.0.6
|
||||||
monitor_speed = 115200
|
monitor_speed = 115200
|
||||||
|
board_build.partitions = no_ota.csv
|
23
src/lcd.cpp
23
src/lcd.cpp
|
@ -5,21 +5,6 @@ void lcd_send_stop_bit() {
|
||||||
Serial.write(0xFF);
|
Serial.write(0xFF);
|
||||||
Serial.write(0xFF);
|
Serial.write(0xFF);
|
||||||
}
|
}
|
||||||
int lcd_get_int() {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
float lcd_get_float() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
String lcd_get_str() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
String lcd_set_var(String var, String value) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void lcd_send_command(String command) {
|
void lcd_send_command(String command) {
|
||||||
lcd_send_stop_bit();
|
lcd_send_stop_bit();
|
||||||
|
@ -27,14 +12,6 @@ void lcd_send_command(String command) {
|
||||||
lcd_send_stop_bit();
|
lcd_send_stop_bit();
|
||||||
}
|
}
|
||||||
|
|
||||||
String lcd_wait_response() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void lcd_touch_callback(int page, int id) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
void lcd_reset() {
|
void lcd_reset() {
|
||||||
lcd_send_stop_bit();
|
lcd_send_stop_bit();
|
||||||
lcd_send_command("rest");
|
lcd_send_command("rest");
|
||||||
|
|
|
@ -816,8 +816,10 @@ void lcd_refresh()
|
||||||
}
|
}
|
||||||
void lcd_top_bar_update()
|
void lcd_top_bar_update()
|
||||||
{
|
{
|
||||||
String time_str = String(rtc.getHour()) + ":" + String(rtc.getMinute());
|
char time_buffer[15];
|
||||||
panel.writeStr("time.txt", time_str);
|
//rtctime_t time = ESPMega_getTime();
|
||||||
|
//sprintf(time_buffer, "%02d:%02d",time.hours,time.minutes);
|
||||||
|
//panel.writeStr("time.txt", time_buffer);
|
||||||
panel.writeNum("server.pic", standalone ? 4 : 5);
|
panel.writeNum("server.pic", standalone ? 4 : 5);
|
||||||
panel.writeNum("lan.pic", ETH.linkUp() ? 3 : 2);
|
panel.writeNum("lan.pic", ETH.linkUp() ? 3 : 2);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue