What’s Changed
🐛 Bugfixes
* Bugfix/1 assignment changes (4) by markusressel (thx to fti7)
* Added method to get actuator/sensor by number
Breaking Changes:
This release changed a couple of parameter names, since the word `id` was wrongly used instead of `number`.
If you used named parameters please update them:
OLD: get_config_actuator(actuator_id=1)
NEW: get_config_actuator(number=1)
OLD: set_config_actuator(actuator_id=1, configuration)
NEW: set_config_actuator(number=1, configuration)
OLD: get_config_sensor(sensor_id=1)
NEW: get_config_sensor(number=1)
OLD: set_config_sensor(sensor_id=1, configuration)
NEW: set_config_sensor(number=1, configuration)
and a couple more...