This commit is contained in:
J. Nick Koston
2025-06-06 08:17:17 +01:00
parent bad165c804
commit f4adf70228
2 changed files with 0 additions and 80 deletions

View File

@@ -14,84 +14,6 @@ void APIServerConnectionBase::log_send_message_(const char *name, const std::str
}
#endif
#ifdef USE_COVER
#endif
#ifdef USE_FAN
#endif
#ifdef USE_LIGHT
#endif
#ifdef USE_SWITCH
#endif
#ifdef USE_API_NOISE
#endif
#ifdef USE_ESP32_CAMERA
#endif
#ifdef USE_CLIMATE
#endif
#ifdef USE_NUMBER
#endif
#ifdef USE_SELECT
#endif
#ifdef USE_SIREN
#endif
#ifdef USE_LOCK
#endif
#ifdef USE_BUTTON
#endif
#ifdef USE_MEDIA_PLAYER
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_BLUETOOTH_PROXY
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_VOICE_ASSISTANT
#endif
#ifdef USE_ALARM_CONTROL_PANEL
#endif
#ifdef USE_TEXT
#endif
#ifdef USE_DATETIME_DATE
#endif
#ifdef USE_DATETIME_TIME
#endif
#ifdef USE_VALVE
#endif
#ifdef USE_DATETIME_DATETIME
#endif
#ifdef USE_UPDATE
#endif
bool APIServerConnectionBase::read_message(uint32_t msg_size, uint32_t msg_type, uint8_t *msg_data) {
switch (msg_type) {
case 1: {

View File

@@ -968,7 +968,6 @@ def build_service_message_type(
# Only add ifdef when we're actually generating content
if ifdef is not None:
hout += f"#ifdef {ifdef}\n"
cout += f"#ifdef {ifdef}\n"
# Generate receive
func = f"on_{snake}"
hout += f"virtual void {func}(const {mt.name} &value){{}};\n"
@@ -990,7 +989,6 @@ def build_service_message_type(
# Only close ifdef if we opened it
if ifdef is not None:
hout += "#endif\n"
cout += "#endif\n"
return hout, cout