rename toString functions

This commit is contained in:
technyon
2022-04-02 14:08:02 +02:00
parent 8b1c5ddf5e
commit 484e069d78
3 changed files with 6 additions and 6 deletions

View File

@@ -100,7 +100,7 @@ void NukiWrapper::updateKeyTurnerState()
if(_keyTurnerState.lockState != _lastKeyTurnerState.lockState)
{
char lockStateStr[20];
nukiLockstateToString(_keyTurnerState.lockState, lockStateStr);
lockstateToString(_keyTurnerState.lockState, lockStateStr);
Serial.print(F("Nuki lock state: "));
Serial.println(lockStateStr);
}