Compare commits

..

No commits in common. "39a08fadceeb9c6545f25f9a16bf0037641072e7" and "41131514cbc324505a58d8e0fcd6d194a8d0fc3c" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View File

@ -289,8 +289,8 @@ void ota_begin()
{
lcd_send_stop_bit();
uint32_t totalsize_kb = upload.totalSize / 1000;
uint32_t upload_pct = 100 * upload.totalSize / 1000000;
String otafiletxt = "Downloading File : " + upload.filename + " (" + String(totalsize_kb) + "KB)";
uint32_t upload_pct = 100 * upload.totalSize/1000000;
String otafiletxt = "Downloading File : " + upload.filename + " ("+String(totalsize_kb) + "KB)";
panel.writeNum("prog.val", upload_pct);
panel.writeStr("otatxt.txt", otafiletxt);
}
@ -726,7 +726,6 @@ void ac_set_state(int mode, int temperature, int fan_speed)
IrSender.sendRaw(ir_code_fan[fan_speed], sizeof(ir_code_fan[fan_speed]) / sizeof(ir_code_fan[fan_speed][0]), NEC_KHZ);
break;
}
ac_changed_user_callback(mode, temperature, fan_speed);
}
void publish_env_state()

View File

@ -47,7 +47,6 @@ void user_init();
void user_loop();
void virtual_interrupt_user_callback(int pin, int state);
void pwm_changed_user_callback(int pin);
void ac_changed_user_callback(int mode, int temperature, int fan_speed);
void timer_tick_callback();
void lt_btn_cb(void *comp);
void fan_btn_cb(void *comp);