-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #748 from tschaban/T0-3.0.2.ESP32
T0-3.1.0
- Loading branch information
Showing
100 changed files
with
5,965 additions
and
4,018 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* AFE Firmware for smart home devices, Website: https://afe.smartnydom.pl/ */ | ||
|
||
#ifndef _AFE_TLS2561_Structure_h | ||
#define _AFE_TLS2561_Structure_h | ||
|
||
#ifdef AFE_CONFIG_API_DOMOTICZ_ENABLED | ||
#include <AFE-DOMOTICZ-Structure.h> | ||
#endif | ||
#include <AFE-MQTT-Structure.h> | ||
|
||
struct TLS2561 { | ||
char name[17]; | ||
uint32_t interval; | ||
#ifdef AFE_ESP32 | ||
uint8_t wirePortId; | ||
#endif | ||
uint8_t i2cAddress; | ||
uint8_t sensitiveness; | ||
uint8_t gain; | ||
#ifdef AFE_CONFIG_API_DOMOTICZ_ENABLED | ||
DOMOTICZ_BASIC_CONFIG domoticz; | ||
#else | ||
MQTT_BASIC_CONFIG mqtt; | ||
#endif | ||
}; | ||
|
||
#endif // _AFE_TLS2561_Structure_h |
Oops, something went wrong.