feat: input_number signal support, implement Clone for a lot of error types

This commit is contained in:
2026-07-14 22:53:42 -04:00
parent 38c30d87d0
commit e3c54a996e
10 changed files with 196 additions and 32 deletions

View File

@@ -30,9 +30,7 @@ impl GetState for HomeAssistantLight {
HomeAssistantState::Err(error_state) => {
Err(GetStateError::Error { state: error_state })
}
HomeAssistantState::Unexpected(state) => {
Err(GetStateError::UnexpectedError { state })
}
HomeAssistantState::Unexpected(state) => Err(GetStateError::UnexpectedError { state }),
}
}
}