Skip to content

Commit

Permalink
Update change logs
Browse files Browse the repository at this point in the history
  • Loading branch information
arendst committed Sep 14, 2024
1 parent 1bfbe02 commit a3892ec
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ All notable changes to this project will be documented in this file.
- Zigbee flashing CC2562P with latest firmware (#22117)
- SML trx pin error (#22119)
- Shutter remaining issues on shutterinvert (#22120)
- Berry I2C to prepare M5Stack I2C STM32 based devices
- Berry I2C to prepare M5Stack I2C STM32 based devices (#22143)

### Removed

Expand Down
1 change: 1 addition & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
- Zigbee flashing CC2562P with latest firmware [#22117](https://github.com/arendst/Tasmota/issues/22117)
- Berry avoid `readbytes()` from crashing when file is too large [#22057](https://github.com/arendst/Tasmota/issues/22057)
- Berry energy missing attributes [#22116](https://github.com/arendst/Tasmota/issues/22116)
- Berry I2C to prepare M5Stack I2C STM32 based devices [#22143](https://github.com/arendst/Tasmota/issues/22143)
- LVGL Added OpenHASP icons to font `montserrat-28` [#22048](https://github.com/arendst/Tasmota/issues/22048)
- Matter fixed UI bug when no endpoints configured [#22008](https://github.com/arendst/Tasmota/issues/22008)
- Matter fix when Rules are disabled [#22016](https://github.com/arendst/Tasmota/issues/22016)
Expand Down
17 changes: 8 additions & 9 deletions tasmota/tasmota_support/support_command.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2743,21 +2743,20 @@ void CmndBatteryPercent(void) {

#ifdef USE_I2C
void CmndI2cScan(void) {
// I2CScan0 - Scan bus1 and bus2
// I2CScan - Scan bus1
// I2CScan2 - Scan bus2
// I2CScan - Scan bus1 then bus2
bool jsflag = false;
if (TasmotaGlobal.i2c_enabled) {
if ((0 == XdrvMailbox.index) || (1 == XdrvMailbox.index)) {
I2cScan();
}
I2cScan();
jsflag = true;
}
#ifdef ESP32
if (TasmotaGlobal.i2c_enabled_2) {
if ((0 == XdrvMailbox.index) || (2 == XdrvMailbox.index)) {
I2cScan(1);
if (jsflag) {
MqttPublishPrefixTopicRulesProcess_P(RESULT_OR_STAT, XdrvMailbox.command);
}
I2cScan(1);
}
#endif
#endif // ESP32
}

void CmndI2cDriver(void)
Expand Down

0 comments on commit a3892ec

Please sign in to comment.