From fca3c1b98d5a5786dd5f83d72c69ad8b0115fc7e Mon Sep 17 00:00:00 2001 From: Tobias <21081031+medlor@users.noreply.github.com> Date: Mon, 22 Jan 2024 22:05:58 +0100 Subject: [PATCH] - 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. --- README.md | 5 +++-- platformio.ini | 6 +++--- rancilio-pid/rancilio-pid.ino | 2 +- rancilio-pid/userConfig.h.SAMPLE | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 552aa5595..03d4c4d45 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/platformio.ini b/platformio.ini index 5e7466c45..8686bed08 100644 --- a/platformio.ini +++ b/platformio.ini @@ -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 @@ -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 @@ -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 diff --git a/rancilio-pid/rancilio-pid.ino b/rancilio-pid/rancilio-pid.ino index 7c52070c6..aa6179e42 100644 --- a/rancilio-pid/rancilio-pid.ino +++ b/rancilio-pid/rancilio-pid.ino @@ -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 diff --git a/rancilio-pid/userConfig.h.SAMPLE b/rancilio-pid/userConfig.h.SAMPLE index 02401e96b..cca8f0697 100644 --- a/rancilio-pid/userConfig.h.SAMPLE +++ b/rancilio-pid/userConfig.h.SAMPLE @@ -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 "/" is defined in //Wifi section