Note: Version 0.4 is work in progress. Please, check version 0.3 for stable version.
Flexible modular non-blocking system for controlling ESP8266. You can reconfigure the system based on how you plug PINs. You can turn on/off modules which are not used. Configuration of current module is store in JSON file.
More information about the project:
Push new version to device over WiFi.
Connects to MQTT broker - send status and receive commands.
Simple web interface which display's current status of module and let you configure whole system. You can also change the state of relay.
Configuration endpoint: /config?NAME=VALUE
Available configuration options:
mqtt_host
- server host with Mosquitto or other MQTT brokermqtt_port
- server port with Mosquittomqtt_parent_topic
- all topics for the devices will be published/subscribed under this topic (e.g. "/home")hostname
- device name used for publishing topics (e.g. "bathroom")temperature_correction
- correction which should be added to value measured by temperature sensor (e.g. -1.2)photocell_threshold
- value which is considered by photocell as light between 0 and 1023 (e.g. 200)pir_up_interval
- number of seconds when PIR is considered up after the first HIGH statedht_interval
- number of seconds between measurementsReboot device: /reboot
You can connect ESP to IBM Bluemix MQTT and NodeRed. It's slightly different than basic Mosquitto. Set following options:
hostname
to d:[YOUR_ORG_ID]:[DEVICE_TYPE]:[DEVICE_NAME]
mqtt_host
to [YOUR_ORG_ID].messaging.internetofthings.ibmcloud.com
mqtt_username
to use-token-auth
mqtt_password
to token from BluemixCommon gotcha: mqtt_host does not contain 4th level domain messaging
.
Start Config Portal when device is not able to connect to WiFi. Access 192.168.4.1 IP to configure the device.
Recommendation: Use PlatformIO for development.
You can turn on/off modules from code in LampMain. Each module has setup function which takes two parameters or more:
bool isEnabled
int pin
Further configuration could be done via REST API and request to config page.
E.g.: http://192.168.2.2/config?temperature_correction=-2
Read value from analog and send it to server.
Read button value and change state of the relay.
Display value delivered to topic /+/+/display/number. E.g. temperature. Current version is using SPI SSD1306 based on library: https://github.com/squix78/esp8266-oled-ssd1306
Current implementation has 10 pages. You can post text to any page and display will rotate through the text. To reset the page, just send empty string.
Meassure temperature and humidity.
Schema: http://www.esp8266learning.com/wemos-mini-pir-sensor-example.php
Detect motion and change state of on-board led.
Receive MQTT command and change state of relay.
RGB LED could be controlled via MQTT message sent to topic /parent/host/command.
Available colors:
blue
green
orange
red
white
Or message black
to turn the LED off.
Schema: http://www.esp8266learning.com/wemos-rgb-led-example.php
Indicate whether water was dete/restartcted by sensor
Master is under development. If you need stable api, please refer to branch.
MQTT messaging changed to commands compatible with IBM Bluemix:
Intorduced modular architecture. User can configure functionality in top-level code.
Configuration is stored in config.json and managed by WiFiManager.
Direct communication based on GET API, MQTT and OTA support. See branch v0.1.