diff --git a/RELEASENOTES.md b/RELEASENOTES.md index d880bc05e..e86665a5d 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -56,7 +56,8 @@ The following binary downloads have been compiled with ESP8266/Arduino library c - Breaking Change Device Groups multicast address and port (#8270) - Change PWM implementation to Arduino #7231 removing support for Core versions before 2.6.3 -- Change default PWM Frequency to 223 Hz instead of 880 Hz for less interrupt pressure +- Change default PWM Frequency to 977 Hz from 880 Hz +- Change minimum PWM Frequency from 100 Hz to 40 Hz - Change flash access removing support for any Core before 2.6.3 - Change HM-10 sensor type detection and add features (#7962) - Change light scheme 2,3,4 cycle time speed from 24,48,72,... seconds to 4,6,12,24,36,48,... seconds (#8034) @@ -100,4 +101,5 @@ The following binary downloads have been compiled with ESP8266/Arduino library c - Add more accuracy to GPS NTP server (#8088) - Add support for analog anemometer by Matteo Albinola (#8283) - Add support for OpenTherm by Yuriy Sannikov (#8373) +- Add support for Thermostat control by arijav (#8212) - Add experimental basic support for Tasmota on ESP32 based on work by Jörg Schüler-Maroldt diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md index cb730a8cb..ebfd0e3ae 100644 --- a/tasmota/CHANGELOG.md +++ b/tasmota/CHANGELOG.md @@ -5,8 +5,11 @@ - Add experimental basic support for Tasmota on ESP32 based on work by Jörg Schüler-Maroldt - Add support for analog anemometer by Matteo Albinola (#8283) - Add support for OpenTherm by Yuriy Sannikov (#8373) +- Add support for Thermostat control by arijav (#8212) - Change flash access removing support for any Core before 2.6.3 - Change HAss discovery by Federico Leoni (#8370) +- Change default PWM Frequency to 977 Hz from 223 Hz +- Change minimum PWM Frequency from 100 Hz to 40 Hz ### 8.2.0.5 20200425 diff --git a/tasmota/tasmota.h b/tasmota/tasmota.h index cca1af80f..ab152f9ec 100644 --- a/tasmota/tasmota.h +++ b/tasmota/tasmota.h @@ -104,7 +104,7 @@ const uint16_t WS2812_MAX_LEDS = 512; // Max number of LEDs const uint32_t PWM_RANGE = 1023; // 255..1023 needs to be devisible by 256 //const uint16_t PWM_FREQ = 1000; // 100..1000 Hz led refresh //const uint16_t PWM_FREQ = 910; // 100..1000 Hz led refresh (iTead value) -const uint16_t PWM_FREQ = 223; // 100..4000 Hz led refresh +const uint16_t PWM_FREQ = 977; // 100..4000 Hz led refresh const uint16_t PWM_MAX = 4000; // [PWM_MAX] Maximum frequency - Default: 4000 const uint16_t PWM_MIN = 40; // [PWM_MIN] Minimum frequency - Default: 40 // For Dimmers use double of your mains AC frequecy (100 for 50Hz and 120 for 60Hz)