OTA works, log download works, integrated OTA build sys

This commit is contained in:
Thaddeus Hughes
2025-12-27 11:52:57 -06:00
parent 81a8da24a0
commit 039c29a39d
12 changed files with 219 additions and 112 deletions

View File

@@ -50,7 +50,7 @@ void setRelay(int8_t relay, bool state) {
void driveRelays() {
uint8_t state = 0x00;
relay_states[0] = (current_time / 1000000) % 2;
//relay_states[0] = (current_time / 1000000) % 2; // for testing purposes
for (uint8_t i=0; i<8; i++) {
// if we command and efuse permits it set the relay
@@ -60,7 +60,7 @@ void driveRelays() {
}
}
ESP_LOGI(TAG, "RELAY STATE: %x", state);
//ESP_LOGI(TAG, "RELAY STATE: %x", state);
i2c_set_relays(state);
}