1 unstable release
| 0.1.0 | Apr 20, 2023 |
|---|
#10 in #espressif
27KB
211 lines
losant-mqtt-esp-idf
ESP-IDF MQTT Client for connecting devices to the Losant IoT Platform
Usage
- add Losant info to a
cfg.tomlfile in your crate root (make sure to .gitignore!); seecfg.example.toml
use esp_losant_mqtt::Device;
# TODO
-
see the
examplesdir -
refer to the Losant docs for message limits
Running examples
-
add Losant and wifi info to a
cfg.tomlfile in the crate root (make sure to .gitignore!); seecfg.example.toml -
if using WSL, use
usbipdto expose a USB device to WSL (Microsoft docs)-
install
usbipdin a PowerShell/CMD terminal# all of the following require admin mode winget install --interactive --exact dorssel.usbipd-win usbipd wsl list # may need a new terminal window to refresh env usbipd wsl attach --auto-attach --busid <BUSID> -
check that the device is accessible within WSL
lsusb # e.g. Bus 001 Device 002: ID 303a:1001 Espressif USB JTAG/serial debug unit
-
-
run the
esp32-c3-devkit-rust-1example; replace the--targetargument with your board's respective compiler target-
using
espflashv2cargo run --example=esp32-c3-devkit-rust-1 --release --target=riscv32imc-esp-espidf -
using
cargo-espflashv2cargo espflash flash --monitor --example=esp32-c3-devkit-rust-1 --release --target=riscv32imc-esp-espidf -
using
espflashv2 (manual)cargo build --example=esp32-c3-devkit-rust-1 --release --target=riscv32imc-esp-espidf espflash flash --monitor target/riscv32imc-esp-espidf/release/examples/wifi
-
Dependencies
~6–15MB
~205K SLoC