Skip to content

Software

Andrew J Freyer edited this page May 6, 2023 · 1 revision

Project Software

  • Arduino IDE. Note that you may have to install serial drivers.

  • Board: ESP32 Dev Module

Open sketch in Arduino IDE, create the secrets.h file with the defines set below, verify, and upload. Sketch defaults to UART 2, which on this board is Pin 16, 17. These pins couple to the Jura debug port.

secrets.h

#define WIFINAME    "ssid"
#define WIFIPASS    "ssid password"
#define MQTTBROKER  "mqtt.broker.ip.address"
#define MQTT_PASS   "pw"
#define MQTT_USER   "user"
Clone this wiki locally