python-kasa/kasa/smart
Teemu R eb4c048b57
Simplify device __repr__ (#805)
Previously:
```
>>> dev
<DeviceType.Hub model H100 at 192.168.xx.xx (Smart Hub), is_on: False - dev specific: {'overheated': False, 'signal_level': 2, 'SSID': 'xx'}>
>>> dev.children[0]
<ChildDevice Temperature Humidity Sensor of <DeviceType.Hub model H100 at 192.168.xx.xx (Smart Hub), is_on: False - dev specific: {'overheated': False, 'signal_level': 2, 'SSID': 'xx'}>>
```

Now:
```
>>> dev
Device: <DeviceType.Hub at 192.168.xx.xx - Smart Hub (H100)>
>>> dev.children[0]
<DeviceType.Sensor Temperature Humidity Sensor (T315) of <DeviceType.Hub at 192.168.xx.xx - Smart Hub (H100)>>
```
2024-03-05 13:35:19 +01:00
..
modules Fix energy module calling get_current_power (#798) 2024-02-28 17:57:02 +00:00
__init__.py Remove SmartPlug in favor of SmartDevice (#781) 2024-02-22 14:34:55 +01:00
smartbulb.py Add initial support for H100 and T315 (#776) 2024-02-22 23:09:38 +01:00
smartchilddevice.py Simplify device __repr__ (#805) 2024-03-05 13:35:19 +01:00
smartdevice.py Add WallSwitch device type and autogenerate supported devices docs (#758) 2024-03-01 18:32:45 +00:00
smartmodule.py Support for on_off_gradually v2+ (#793) 2024-02-24 02:16:43 +01:00