Project Description
An IoT monitoring project that collects environmental data and displays it in a simple dashboard. Members learn how sensors, microcontrollers and web interfaces work together.
Supervisor: NEXUS Project Team
An IoT monitoring project that collects environmental data and displays it in a simple dashboard. Members learn how sensors, microcontrollers and web interfaces work together.
View tutorial
An IoT monitoring project that collects environmental data and displays it in a simple dashboard. Members learn how sensors, microcontrollers and web interfaces work together.
Supervisor: NEXUS Project Team


float temperature = dht.readTemperature();
float humidity = dht.readHumidity();
if (!isnan(temperature) && !isnan(humidity)) {
// Send values to the NEXUS dashboard endpoint.
}
This demo project is not open for registration yet.