Solar Battery Monitoring System for Kannur CCTV
- Measures the voltage and displays it to a website hosted in the micro-controller itself
- Graphical representation of the battery voltage
- Manual
Street Light Control
This is the main branch where the most recent stable release of the project will be contained
latesbranch contains thelatestbeta changes- There will be a branch for
esp32and a separate branch foresp8266and forgeneric
*generic which is named because the code is written in a way that it will compile for both or all the boards using*
// config.h
#define ONEPLUS_AP
#define LIGHT_SENSING
#define HUMID_TEMP_SENSING
#define STATIC_IP
#define DEBUG_EVERYTHING
#define LCD_DSPLAY
#define RAIN_SENSING
#define WIND_DIRECTION_SENSING
#define WIND_SPEED_SENSINGand even the struct that holds the sensor reading is defined with maximum memory saving
typedef struct Data {
#if defined(LIGHT_SENSING)
float light_sensor_value;
#endif
#if defined(HUMID_TEMP_SENSING)
float humidity;
float temperature;
#endif
float battery_voltage;
#if defined(RAIN_SENSING)
float rain_volume;
#endif
#if defined(WIND_SPEED_SENSING)
float wind_speed;
#endif
#if defined(WIND_DIRECTION_SENSING)
float wind_direction;
#endif
String led_relayState;
} Data;
Most Functionalities int this site are still experimental

More info on the schematics here
