This is an example Mongoose OS app that connects to Losant via MQTT.
- ESP8266
- ESP32
Before beginning, you must have the mos
tool installed. For more info, see the mos installation instructions.
- First, clone the losant app
$ git clone https://github.com/Losant/losant-mqtt-mongoose-os.git
- Building the firmware: (esp8266 or esp32)
$ mos build --arch esp8266
- To flash the device: (esp8266 or esp32)
$ mos flash
- Configure WiFi:
mos wifi WIFI_SSID WIFI_PASSWORD
You must replace the following values:
- WIFI_SSID
- WIFI_PASSWORD
- Configure MQTT connection to Losant:
mos config-set device.id=LOSANT_DEVICE_ID \
mqtt.client_id=LOSANT_DEVICE_ID \
mqtt.user=LOSANT_ACCESS_KEY \
mqtt.pass=LOSANT_ACCESS_SECRET
You obtain the LOSANT_DEVICE_ID
, LOSANT_ACCESS_KEY
, and LOSANT_ACCESS_SECRET
values from Losant.
- To stream logs to the terminal:
$ mos console
- To open up the Web UI:
$ mos