disable certificate input fields when W5500 device is used

This commit is contained in:
technyon
2023-01-28 22:08:43 +01:00
parent b11a3329f8
commit 065b2d177e
9 changed files with 30 additions and 6 deletions

View File

@@ -393,6 +393,10 @@ int Network::mqttConnectionState()
return _mqttConnectionState;
}
bool Network::encryptionSupported()
{
return _device->supportsEncryption();
}
void Network::publishFloat(const char* prefix, const char* topic, const float value, const uint8_t precision)
{