Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 343 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 343 Bytes

bus

Controller

The controller module requires a credentials.h file with the credentials for the local wifi network.

Reference for the credentials.h:

#ifndef CREDENTIALS_H
#define CREDENTIALS_H

#define WIFI_SSID "ssid"
#define WIFI_PW "password"
#define MQTT_PW "mqtt-password"
#define MQTT_BROKER "mqtt-broker-url"

#endif