-
Notifications
You must be signed in to change notification settings - Fork 0
Home
alx-1 edited this page Sep 10, 2023
·
45 revisions
ESP32-based sensor and actuator board for capturing live sensor data and playback, controlling lights and motors.
Sensors implemented so far : Air pressure (breath pressure), Accelerometer (XYZ angle and acceleration on the three axis), breathing sensors, Analog sensors inputs such as light and Carbon Monoxide (extendable).
Can send data to : Hydra, Chataigne, ossia, touchoscserver and the Technologies de la fête server module.
Connecting to the CajitaAbierta for the first time
Opening and using the configuration portal
Sending data to Hydra, PureData
graph TD;
Start-->WiFI_found-->Open_Socket_to_server-->Send_data_to_server;
Start-->WiFI_not_found-->Open_AP_CajitaAbierta-->HTML_Index_WiFIConfig-->Start;
Start-->ConfigureButton-->Open_AP_CajitaAbierta;
Open_AP_CajitaAbierta-->HTML_SensorConfig;
Open_AP_CajitaAbierta-->HTML_Update_firmware-->Save;
Open_AP_CajitaAbierta-->HTML_Recording_mode-->Save;
HTML_SensorConfig-->BreathPressureSensor-->Save;
HTML_SensorConfig-->Accelerometer_X_Y_Z_TAP-->Save;
HTML_SensorConfig-->AnalogSensors-->Save;
Save-->Start;