Skip to content

Commit

Permalink
- 3.2.5:
Browse files Browse the repository at this point in the history
  - Feature: Add local(!) MQTT Broker support on ESP32. Finally you can have MQTT without an external running broker. Many thanks to bviecelli!
  - Fix: Upgrade to Expressif v6.5.0
  - Some bugfixes on the new broker integration.
  • Loading branch information
medlor committed Jan 22, 2024
1 parent 2db540c commit fca3c1b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ Installation is as explained on http://rancilio-pid.de/ but with following adapa
- Instructions can be found at https://github.com/medlor/bleeding-edge-ranciliopid/wiki/Instructions-on-how-to-create-new-icon-collections
## Changelog
- 3.2.5 beta1:
- Feature: Add local(!) MQTT Broker support on ESP32. Many thanks to bviecelli!
- 3.2.5:
- Feature: Add local(!) MQTT Broker support on ESP32. Finally you can have MQTT without an external running broker. Many thanks to bviecelli!
- Fix: Upgrade to Expressif v6.5.0
- Some bugfixes on the new broker integration.
- 3.2.4:
- Many more refactorings by aschoelzhorn. Thanks again!
Expand Down
6 changes: 3 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ lib_deps =
HX711_ADC_fix=https://github.com/medlor/HX711_ADC#1.2.12_pcp_v1

[env:esp32_usb]
platform = espressif32@6.4.0
platform = espressif32@6.5.0
board = esp32dev
framework = arduino
monitor_speed = 115200
Expand All @@ -89,7 +89,7 @@ lib_deps =
mlesniew/PicoMQTT@^0.3.8

[env:esp32_ota_DEV]
platform = espressif32@6.4.0
platform = espressif32@6.5.0
board = esp32dev
framework = arduino
monitor_speed = 115200
Expand All @@ -115,7 +115,7 @@ lib_deps =
mlesniew/PicoMQTT@^0.3.8

[env:esp32_ota_LIVE]
platform = espressif32@6.4.0
platform = espressif32@6.5.0
board = esp32dev
framework = arduino
monitor_speed = 115200
Expand Down
2 changes: 1 addition & 1 deletion rancilio-pid/rancilio-pid.ino
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "controls.h"
#include "PIDBias.h"

const char* sysVersion PROGMEM = "3.2.5 beta1";
const char* sysVersion PROGMEM = "3.2.5";

/********************************************************
* definitions below must be changed in the userConfig.h file
Expand Down
2 changes: 1 addition & 1 deletion rancilio-pid/userConfig.h.SAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
#define BLYNKPORT 8080

// MQTT
#define MQTT_ENABLE 1 // 0 = off (no MQTT at all) | 1=MQTT client | 2=MQTT Server if you dont have a mqtt server running on another system)
#define MQTT_ENABLE 2 // 0 = off (no MQTT at all) | 1=MQTT client | 2=MQTT Server if you dont have a mqtt server running on another system)
#define MQTT_USERNAME "myuser"
#define MQTT_PASSWORD "mypass"
#define MQTT_TOPIC_PREFIX "custom/Küche." // topic will be "<MQTT_TOPIC_PREFIX><HOSTNAME>/<READING>" <HOSTNAME> is defined in //Wifi section
Expand Down

0 comments on commit fca3c1b

Please sign in to comment.