update espMqttClient
This commit is contained in:
@@ -29,4 +29,12 @@ IPAddress::operator uint32_t() {
|
||||
return _address;
|
||||
}
|
||||
|
||||
bool IPAddress::operator==(IPAddress other) {
|
||||
return _address == other._address;
|
||||
}
|
||||
|
||||
bool IPAddress::operator!=(IPAddress other) {
|
||||
return _address != other._address;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user