Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.1.0 #53

Merged
merged 12 commits into from
Jan 18, 2022
Merged

3.1.0 #53

merged 12 commits into from
Jan 18, 2022

Conversation

medlor
Copy link
Owner

@medlor medlor commented Jan 18, 2022

Changelog

  • 3.1.0:
    • NEW FEATURE: Add support for up to 3 "Profiles", which can be used to quickly switch between different brew settings (eg. when different beans are used).
      • An individual profile comprises of following settings:
        • Brew Temperature / setPoint
        • Brew Time
        • Preinfusion time and pause
        • Coldstart Temperature / startTemp
      • Profiles can be selected by any means, eg mqtt/blynk/menu/.. . The variable for this is "profile".
      • The selected profile is also shown on the display, see new setting ENABLE_PROFILE_STATUS.
      • ATTENTION: Following variable names has changed and therefore any mqtt dashboards and tools have to be adapted (eg IotMQTT/Grafana/nodered):
        • setPoint -> activeSetPoint
        • brewtime -> activeBrewTime
        • starttemp -> activeStartTemp
        • preinfusion -> activePreinfusion
        • preinfusionpause -> activePreinfusionPause
        • Hint: Changing the value of any of variables (eg using mqtt/blynk) will update the respective setting of the currently activated profile.
      • Blynk:
        • Added new virtual Pin V3 for "profile", which can be any number between 1 and 3.
        • Added Blynk Showcase.
    • NEW FEATURE: Initial support for MENU which can be used to control settings using the display-case with buttons:
      • Action "MENU" added.
      • Actions TEMP_INC and TEMP_DEC renamed to MENU_INC and MENU_DEC respectively.
      • Added new userConfig.h setting MENU_CONFIG which is used to configure menu settings.
      • Following menu operations are supported (can be extended on request):
        • SETPOINT, SETPOINTSTEAM, BREWTIME, PREINFUSION, PREINFUSION_PAUSE, PID_ON
    • NEW FEATURE: The calculation of the "total brew time" can be adjusted with the userConfig.h setting BREWTIMER_MODE.
      • 0: (default) brewtime-countdown is equal BREWTIMEX.
      • 1: brewtime-countdown is BREWTIMEX + PREINFUSIONX + PREINFUSION_PAUSEX
    • userConfig.h Changes:
      • Added:
        • ENABLE_PROFILE_STATUS
        • Renamed SETPOINT to SETPOINT1
        • Renamed BREWTIME to SETPOINT1
        • Renamed PREINFUSION to PREINFUSION1
        • Renamed PREINFUSION_PAUSE to PREINFUSION_PAUSE1
        • TEMPSENSOR (default=2)
        • SETPOINT2, SETPOINT3
        • STARTTEMP2, STARTTEMP3
        • PREINFUSION2, PREINFUSION3
        • PREINFUSION_PAUSE2, PREINFUSION_PAUSE3
        • BREWTIMER_MODE
    • Support for Thermistor K-type with MAX6675 (Thanks to aschoelzhorn for the PR and TeraK, sailhobie for support).
      • TSIC3xx is still strongly recommended to use!
    • Updated IoTMQTT Dashboard IoTMQTTPanel-perfect_coffee_pid_v3.1.0_v1.json to include Profile and Action support. Showcase.
    • Refactor and fix eeprom stuff.
    • Refactor all variables from double to float.
    • Make blynk optional on compilation.
    • Removed burst feature.
    • Fixes:
      • Fix blynk "heater output" not being shown.
      • Fix float compare function.

medlor and others added 12 commits November 8, 2021 19:44
  - Initial support for MENU which can be used to control settings using the display-case with buttons:
    - Action "MENU" added.
    - Actions TEMP_INC and TEMP_DEC renamed to MENU_INC and MENU_DEC respectively.
    - Added new userConfig.h setting MENU_CONFIG which is used to configure menu settings.
    - Following menu operations are supported (can be extended on request):
      - SETPOINT, SETPOINTSTEAM, BREWTIME, PREINFUSION, PREINFUSION_PAUSE, PID_ON
  - Refactor some blynk stuff.
…elzhorn/bleeding-edge-ranciliopid into aschoelzhorn-feature/support_thermocouple
  - Initial support for Thermistor K-type with MAX6675 (Thanks to aschoelzhorn!).
  - userConfig.h:
    - Added:
      TEMPSENSOR (default=2)
  - Add support for up to 3 "Profiles", which can be used to quickly switch between different brew setings (eg. when different beans are used).
    - An individual profile comprises of following settings:
      - Brew Temperature / setPoint
      - Brew Time
      - Preinfusion time and pause
      - Coldstart Temperature / startTemp
    - Profiles can be selected by any means, eg mqtt/blynk/menu/.. . The variable for this is "profile".
    - The selected profile is also shown on the display, see new setting ENABLE_PROFILE_STATUS.
    - ATTENTION: Following variable names has changed and therefore any mqtt dashboards and tools have to be adapted (eg IotMQTT/Grafana/nodered):
      - setPoint -> activeSetPoint
      - brewtime -> brewTime
      - starttemp -> activeStartTemp
      - preinfusion -> activePreinfusion
      - preinfusionpause -> activePreinfusionPause
      - Hint: Changing the value of any of variables (eg using mqtt/blynk) will update the respective setting of the currently activated profile.
    - Blynk:
      - Added new virtual Pin V3 for "profile", which can be any number between 1 and 3.
      - Added [Blynk Showcase](https://github.com/medlor/bleeding-edge-ranciliopid/tree/master/blynk/blynk-showcase_v3.1.0.mp4).
  - userConfig.h Changes:
    - Added:
      - ENABLE_PROFILE_STATUS
      - Renamed SETPOINT to SETPOINT1
      - Renamed BREWTIME to SETPOINT1
      - Renamed PREINFUSION to PREINFUSION1
      - Renamed PREINFUSION_PAUSE to PREINFUSION_PAUSE1
    - Added:
      - SETPOINT2, SETPOINT3
      - STARTTEMP2, STARTTEMP3
      - PREINFUSION2, PREINFUSION3
      - PREINFUSION_PAUSE2, PREINFUSION_PAUSE3
  - Updated IoTMQTT Dashboard [IoTMQTTPanel-perfect_coffee_pid_v3.1.0_v1.json](https://github.com/medlor/bleeding-edge-ranciliopid/tree/3.1.0_beta/IoTMQTTPanel/IoTMQTTPanel-perfect_coffee_pid_v3.1.0_v1.json) to include Profile and Action support. [Showcase](https://github.com/medlor/bleeding-edge-ranciliopid/tree/master/IoTMQTTPanel/IoTMQTT-showcase_v3.1.0.mp4).
  - Refactor eeprom stuff to extra file.
  - Refactor all variables from double to float.
  - Make blynk optional on compilation.
  - Fixes:
    - Fix blynk "heater output" not being shown.
  - test version for MAX6675K with additional debug information.
  - MAX6675K decreased refreshTempInterval from 260ms to 200ms.
  - latest test version for MAX6675K to mitigate issues due to inaccurate readings.
  - NEW FEATURE: Add support for up to 3 "Profiles", which can be used to quickly switch between different brew settings (eg. when different beans are used).
    - An individual profile comprises of following settings:
      - Brew Temperature / setPoint
      - Brew Time
      - Preinfusion time and pause
      - Coldstart Temperature / startTemp
    - Profiles can be selected by any means, eg mqtt/blynk/menu/.. . The variable for this is "profile".
    - The selected profile is also shown on the display, see new setting ENABLE_PROFILE_STATUS.
    - ATTENTION: Following variable names has changed and therefore any mqtt dashboards and tools have to be adapted (eg IotMQTT/Grafana/nodered):
      - setPoint -> activeSetPoint
      - brewtime -> activeBrewTime
      - starttemp -> activeStartTemp
      - preinfusion -> activePreinfusion
      - preinfusionpause -> activePreinfusionPause
      - Hint: Changing the value of any of variables (eg using mqtt/blynk) will update the respective setting of the currently activated profile.
    - Blynk:
      - Added new virtual Pin V3 for "profile", which can be any number between 1 and 3.
      - Added [Blynk Showcase](https://github.com/medlor/bleeding-edge-ranciliopid/tree/master/blynk/blynk-showcase_v3.1.0.mp4).
  - NEW FEATURE: Initial support for MENU which can be used to control settings using the display-case with buttons:
    - Action "MENU" added.
    - Actions TEMP_INC and TEMP_DEC renamed to MENU_INC and MENU_DEC respectively.
    - Added new userConfig.h setting MENU_CONFIG which is used to configure menu settings.
    - Following menu operations are supported (can be extended on request):
      - SETPOINT, SETPOINTSTEAM, BREWTIME, PREINFUSION, PREINFUSION_PAUSE, PID_ON
  - NEW FEATURE: The calculation of the "total brew time" can be adjusted with the userConfig.h setting BREWTIMER_MODE.
     - 0: (default) brewtime-countdown is equal BREWTIMEX.
     - 1: brewtime-countdown is BREWTIMEX + PREINFUSIONX + PREINFUSION_PAUSEX
  - userConfig.h Changes:
    - Added:
      - ENABLE_PROFILE_STATUS
      - Renamed SETPOINT to SETPOINT1
      - Renamed BREWTIME to SETPOINT1
      - Renamed PREINFUSION to PREINFUSION1
      - Renamed PREINFUSION_PAUSE to PREINFUSION_PAUSE1
      - TEMPSENSOR (default=2)
      - SETPOINT2, SETPOINT3
      - STARTTEMP2, STARTTEMP3
      - PREINFUSION2, PREINFUSION3
      - PREINFUSION_PAUSE2, PREINFUSION_PAUSE3
      - BREWTIMER_MODE
  - Support for Thermistor K-type with MAX6675 (Thanks to aschoelzhorn for the PR and TeraK, sailhobie for support).
    - TSIC3xx is still strongly recommended to use!
  - Updated IoTMQTT Dashboard [IoTMQTTPanel-perfect_coffee_pid_v3.1.0_v1.json](https://github.com/medlor/bleeding-edge-ranciliopid/tree/master/IoTMQTTPanel/IoTMQTTPanel-perfect_coffee_pid_v3.1.0_v1.json) to include Profile and Action support. [Showcase](https://github.com/medlor/bleeding-edge-ranciliopid/tree/master/IoTMQTTPanel/IoTMQTT-showcase_v3.1.0.mp4).
  - Refactor and fix eeprom stuff.
  - Refactor all variables from double to float.
  - Make blynk optional on compilation.
  - Removed burst feature.
  - Fixes:
    - Fix blynk "heater output" not being shown.
    - Fix float compare function.
@medlor medlor merged commit bcc9796 into master Jan 18, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants