Print inverter serial as hex

This commit is contained in:
Thomas Basler 2022-06-30 21:06:23 +02:00
parent 850b8685a1
commit b2271373a4

View File

@ -24,7 +24,7 @@ void HoymilesClass::loop()
std::shared_ptr<InverterAbstract> iv = getInverterByPos(inverterPos);
if (iv != nullptr && _radio->isIdle()) {
Serial.print(F("Fetch inverter: "));
Serial.println(iv->serial());
Serial.println(iv->serial(), HEX);
iv->sendStatsRequest(_radio.get());
}