Skip to content

Commit

Permalink
more typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Apr 13, 2024
1 parent c0f019f commit 3066e12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ESPGeiger/src/Mqtt/MQTT_Client.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class MQTT_Client : public PubSubClient {
private:
MQTT_Client();
static ConfigManager _configManager;
String buildTopic(const char * baseTopic, const char * cmnd);
String buildTopic(const char * baseTopic, const char * cmd);
#ifdef MQTTAUTODISCOVER
void setupHassAuto();
void setupHassCB();
Expand All @@ -81,8 +81,8 @@ class MQTT_Client : public PubSubClient {
std::vector<std::pair<char*, char*>> additionalEntries = {}
);
void removeHassTopic(const String& mqttDeviceType, const String& mattDeviceName);
void mqttDataCallback(char* topic, byte* payload, unsigned int length);
#endif
void mqttDataCallback(char* topic, byte* payload, unsigned int length);
unsigned long lastPing = 0;
unsigned long lastConnectionAtempt = 0;
uint8_t connectionAttempts = 0;
Expand Down

0 comments on commit 3066e12

Please sign in to comment.