mirror of
https://github.com/esphome/esphome.git
synced 2025-09-23 13:42:27 +01:00
* Add config to disable auto-connect of BLE client. Correct initialise MAC address of BLE client. * Checkpont * Fixes for automation progress. * Fixes for automation progress. * Checkpoint; fix notify for ble_client * Fix BLE client binary_output * Various fixes * Consider notifications on when receiving REG_FOR event. * Add testing branch to workflow * Add workflow * CI changes * CI changes * CI clang * CI changes * CI changes * Add comment about logging macros * Add test, sanitise comment * Revert testing change to ci config * Update codeowners * Revert ci config change * Fix some state changes * Add default case. * Minor fixes * Add auto-connect to logconfig
14 lines
208 B
C++
14 lines
208 B
C++
#ifdef USE_ESP32
|
|
|
|
#include "automation.h"
|
|
|
|
namespace esphome {
|
|
namespace ble_client {
|
|
|
|
const char *const Automation::TAG = "ble_client.automation";
|
|
|
|
} // namespace ble_client
|
|
} // namespace esphome
|
|
|
|
#endif
|