Update changelogs

This commit is contained in:
Theo Arends 2023-10-21 14:48:12 +02:00
parent 3412c17e2d
commit bd90363565
3 changed files with 3 additions and 2 deletions

View File

@ -16,7 +16,7 @@ All notable changes to this project will be documented in this file.
### Changed
- Prepare I2C drivers for bus2 support
- Matter Light0 now accept a Relay number
- Matter Light0 now accept a Relay number (#19809)
### Fixed
- NeoPool filtration mode display (#19801)

View File

@ -123,6 +123,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl https://ota.tasm
### Breaking Changed
### Changed
- Matter Light0 now accept a Relay number [#19809](https://github.com/arendst/Tasmota/issues/19809)
### Fixed
- NeoPool filtration mode display [#19801](https://github.com/arendst/Tasmota/issues/19801)

View File

@ -183,7 +183,7 @@ void Ads1115Detect(void) {
I2cValidRead16(&buffer, ads1115_addresses[i], ADS1115_REG_POINTER_CONFIG, bus)) {
Ads1115[ads1115_count].address = ads1115_addresses[i];
Ads1115[ads1115_count].bus = bus;
Ads1115StartComparator(ads1115_count, i, ADS1115_REG_CONFIG_MODE_CONTIN);
Ads1115StartComparator(ads1115_count, 0, ADS1115_REG_CONFIG_MODE_CONTIN);
I2cSetActiveFound(Ads1115[ads1115_count].address, "ADS1115", Ads1115[ads1115_count].bus);
ads1115_count++;
if (4 == ads1115_count) { return; }