better integration into main fixed scheduler and timestamping simplified the api there ditched integer 64-bit storage types (not needed. 32 bits is plenty for everything except current time - but that's handled in RTC, everything else is deltas) web remote!
17 lines
223 B
C
17 lines
223 B
C
/*
|
|
* solar.h
|
|
*
|
|
* Created on: Dec 13, 2025
|
|
* Author: Thad
|
|
*/
|
|
|
|
#ifndef MAIN_SOLAR_H_
|
|
#define MAIN_SOLAR_H_
|
|
|
|
#include "esp_err.h"
|
|
|
|
esp_err_t solar_run_fsm();
|
|
esp_err_t solar_reset_fsm();
|
|
|
|
#endif /* MAIN_SOLAR_H_ */
|