Go to file
mathieu ec2e28a5b6 Merge pull request 'scd4x' (#1) from scd4x into master
Reviewed-on: #1
2023-11-28 23:12:28 +01:00
Esp8266-Arduino-Makefile@6ffd79de30 Fix MQTT publishing when mqtt is not configured 2016-10-28 00:21:12 +02:00
WiFiAccessPointConfigurator Do not need to be setup to play with gpio or OTA 2016-03-11 01:42:27 +01:00
WiFiWebServer Complete documentation 2015-10-01 01:07:11 +02:00
WifiControlSensor SCD4X is disabled by default 2023-11-28 23:10:50 +01:00
.gitlab-ci.yml Add instruction to install Bosch Sensortec Environmental Cluster library 2020-07-28 16:57:03 +02:00
.gitmodules Add Esp8266-Arduino-Makefile as a submodule 2016-06-22 00:44:25 +02:00
LICENSE Add license 2016-03-17 23:56:31 +01:00
Readme.md Add instruction to install Bosch Sensortec Environmental Cluster library 2020-07-28 16:57:03 +02:00
Updater.py OTA does not need a reboot anymore 2016-12-14 22:57:01 +01:00

Readme.md

build status

Introduction

This is a bunch of project that aims to provide a reusable platform for different kind of project using ESP8266.

Start by looking at ESP8266 SDK integration in Arduino environment https://github.com/esp8266/Arduino

WiFiWebServer

Provide GPIO control by HTTP request

WiFiAccessPointConfigurator

Provide GPIO control by HTTP request.

To be able to configure the Wifi credentials without flashing the device, at first boot, the device will create a AP that will help to configure:

  • Wifi SSID to connect to
  • Wifi Passwd to use for SSID
  • A Mdns name to be accessible without IP address (e.g. under Linux : mydevice.local )

Settings can be reconfigured latter by web interface or by pulling down gpio 3

Device can also be put in OTA mode and will wait for OTA from the espota tool.

WifiControlSensor

Provide previous WiFiAccessPointConfigurator features and can also get measure from several sensors:

  • BMP180
  • DHT11/22
  • Any Analog sensor

Those measure can be shared by MQTT(s). MQTT details (server, username, passwd, port) can be configured by a web page.

To interface with BMP180, the following library should be installed into Arduino environment: https://github.com/mmaret/BMP180_Breakout_Arduino_Library/archive/master.zip

To use mqtt, a fork of the Adafruit Mqtt library should be installed (gitlab@gitlab.mathux.org:Mathieu/adaAdafruit_MQTT_Libraryfruit_mqtt_library.git -b retain_support). This have been tested against a mosquitto server

Quick cmdline to install deps:

cd ~/Arduino/libraries/ git clone gitlab@gitlab.mathux.org:Mathieu/ESP8266_HIB.git git clone git@github.com:mmaret/BMP180_Breakout_Arduino_Library.git git clone gitlab@gitlab.mathux.org:Mathieu/adaAdafruit_MQTT_Libraryfruit_mqtt_library.git -b support_retain arduino --install-library "Adafruit BME680 Library" arduino --install-library "Adafruit Unified Sensor" arduino --install-library "DHT sensor library" arduino --install-library "BSEC Software Library" # Then you have to follow the instruction in the README.md in the BSEC install folder