Set up, manage, and control your Houseflow devices, that includes connected home products like lights, cameras, thermostats, relays and more – all from the Houseflow app.
npm install && npm run build
firebase deploy
devices
and devices-private
, generate UUID version 4, in Linux/OSX by using echo $(uuidgen) | awk '{print tolower($0)}'
or by using UUID generator, afterwards create document inside devices
collection which should look like this
IMPORTANT| Value | Description | Type | | -------- | -------------------------------------------------------------------------------------- | -------- | | $UUID | With uuidv4 you previously generated | -------- | | data | Leave it as empty map | Map | | geoPoint | Fill up them, they're used for checking if client is close to device | GeoPoint | | ip | Leave it as unknown, it will be filled up when device connects | string | | status | Leave it as false, it will be filled up when device connects | bool | | type | Set it to one of currently supported device types | string | | uid | Replace it with uuidv4, IT MUST BE SAME AS DOCUMENT NAME | string |
Now create new document at devices-private
collection with same document ID as previously generated uuidv4, now generate another UUID with this command echo $(uuidgen) | awk '{print tolower($0)}'
| Value | Description | Type | | ------ | ------------------------------------ | ------ | | $UUID | With uuidv4 you previously generated | ------ | | secret | Set it to second generated UUID | string |
firebaseConfig.json
at put at project root.openssl rand -base64 1024
, and filling up with output| Value | Description |
| ------------------- | -------------------------------------------------------------------------------------------------- |
| DOMAIN | Domain address that will be used(used for finding letsencrypt cert path), only for non-dev version |
| JWTKEY | openssl rand -base64 1024
|
| DEVICEAPIUSERNAME | echo $(uuidgen) | awk '{print tolower($0)}
|
| DEVICEAPI_PASSWORD | Same as above |
Start the server using docker-compose -f docker-compose.dev.yml up --build
or in production mode docker-compose up --build
, be aware that production mode requires setting DOMAIN
enviroment variable and creating SSL Certificate
Its time to flash device, go inside /devices/esp8266
and copy platformio.example.ini
to platformio.ini
and update fields. Now install CLI version of platformio or VSCode extension. Connect device and press flash!
Give yourself permission to execute. First off open mobile app/web app and register, this will create new document at users collection, go to user document and add new Map
inside devices
array, it shoud look like that
| Value | Description | Type | | ------- | ------------------------------------------------------ | ------ | | uid | UID of the device we flashed | string | | execute | Allow for example opening the gate | bool | | read | Allow reading device data | bool | | write | Allow writing to device, inviting other people and etc | bool |
Houseflow uses emqx as MQTT Broker. Devices connect to it aswell as Device service. For authorization Auth service is being used. It sends HTTP request to Webhooks service on every connect/disconnect.
Used to handle all requests from Web or Mobile app, communicates with them over HTTP, for authorization it is using Firestore. Redirects all HTTP requests directly to MQTT Broker with specific topic, in conclusion embedded device trigger specific event
Listens to EMQX connect/disconnect events, changes device state in Firestore
Adds device and ACL authorization for MQTT broker, prevents devices from subscribing to topic which isn't intended for them and also from connecting unknown devices.
~~Handle updates over the air for embedded devices~~. Currently not used. Updates are handled via ArduinoOTA, related issue.
Mobile app made using Flutter, I picked it over React Native.
Web app made using React front-end library with Antd Pro v5.
Currently supported devices are ESP8266, also there is a version in Node.JS. For ESP8266 I use Arduino framework and some kind of C++.
Measures temperatures and wake me up.
ESP01 with relay used to open or close gate remotely, closes circuit for 1s and then opens it again
ESP8266 Development Board with relay to trigger mixing water, closes circuit for 1s and then opens it again
ESP8266 Wemos D1 board, connected with a TIP31C transistor to turn on/off and adjust intensity of lights
Project is using Firestore database for storing devices, users and etc
Pull requests are welcome