mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-04-26 16:46:23 +00:00
improve doc-strings
This commit is contained in:
parent
a7cb2cebed
commit
2976c453ac
@ -20,39 +20,47 @@ class SmartBulb(SmartDevice):
|
|||||||
"""Representation of a TP-Link Smart Bulb.
|
"""Representation of a TP-Link Smart Bulb.
|
||||||
|
|
||||||
Usage example when used as library:
|
Usage example when used as library:
|
||||||
|
```python
|
||||||
p = SmartBulb("192.168.1.105")
|
p = SmartBulb("192.168.1.105")
|
||||||
|
|
||||||
# print the devices alias
|
# print the devices alias
|
||||||
print(p.alias)
|
print(p.sync.get_alias())
|
||||||
|
|
||||||
# change state of bulb
|
# change state of bulb
|
||||||
p.turn_on()
|
p.sync.turn_on()
|
||||||
p.turn_off()
|
p.sync.turn_off()
|
||||||
|
|
||||||
# query and print current state of plug
|
# query and print current state of plug
|
||||||
print(p.state)
|
print(p.sync.get_state_information())
|
||||||
|
|
||||||
# check whether the bulb supports color changes
|
# check whether the bulb supports color changes
|
||||||
if p.is_color:
|
if p.sync.is_color():
|
||||||
|
|
||||||
# set the color to an HSV tuple
|
# set the color to an HSV tuple
|
||||||
p.set_hsv(180, 100, 100)
|
p.sync.set_hsv(180, 100, 100)
|
||||||
|
|
||||||
# get the current HSV value
|
# get the current HSV value
|
||||||
print(p.hsv)
|
print(p.sync.get_hsv())
|
||||||
|
|
||||||
# check whether the bulb supports setting color temperature
|
# check whether the bulb supports setting color temperature
|
||||||
if p.is_variable_color_temp:
|
if p.sync.is_variable_color_temp():
|
||||||
# set the color temperature in Kelvin
|
# set the color temperature in Kelvin
|
||||||
p.set_color_temp(3000)
|
p.sync.set_color_temp(3000)
|
||||||
# get the current color temperature
|
|
||||||
print(p.color_temp)
|
# get the current color temperature
|
||||||
|
print(p.sync.get_color_temp())
|
||||||
|
|
||||||
# check whether the bulb is dimmable
|
# check whether the bulb is dimmable
|
||||||
if p.is_dimmable:
|
if p.sync.is_dimmable():
|
||||||
|
|
||||||
# set the bulb to 50% brightness
|
# set the bulb to 50% brightness
|
||||||
p.set_brightness(50)
|
p.sync.set_brightness(50)
|
||||||
|
|
||||||
# check the current brightness
|
# check the current brightness
|
||||||
print(p.brightness)
|
print(p.sync.get_brightness())
|
||||||
|
```
|
||||||
|
|
||||||
|
Omit the `sync` attribute to get coroutines.
|
||||||
|
|
||||||
Errors reported by the device are raised as SmartDeviceExceptions,
|
Errors reported by the device are raised as SmartDeviceExceptions,
|
||||||
and should be handled by the user of the library.
|
and should be handled by the user of the library.
|
||||||
|
@ -571,8 +571,7 @@ class SmartDevice:
|
|||||||
"""Return True if the device is dimmable."""
|
"""Return True if the device is dimmable."""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
@property
|
async def is_variable_color_temp(self) -> bool:
|
||||||
def is_variable_color_temp(self) -> bool:
|
|
||||||
"""Return True if the device supports color temperature."""
|
"""Return True if the device supports color temperature."""
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@ -12,15 +12,22 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
class SmartPlug(SmartDevice):
|
class SmartPlug(SmartDevice):
|
||||||
"""Representation of a TP-Link Smart Switch.
|
"""Representation of a TP-Link Smart Switch.
|
||||||
|
|
||||||
Usage example when used as library:
|
Usage example when used a a synchronous library:
|
||||||
|
```python
|
||||||
p = SmartPlug("192.168.1.105")
|
p = SmartPlug("192.168.1.105")
|
||||||
|
|
||||||
# print the devices alias
|
# print the devices alias
|
||||||
print(p.alias)
|
print(p.sync.get_alias())
|
||||||
|
|
||||||
# change state of plug
|
# change state of plug
|
||||||
p.turn_on()
|
p.sync.turn_on()
|
||||||
p.turn_off()
|
p.sync.turn_off()
|
||||||
|
|
||||||
# query and print current state of plug
|
# query and print current state of plug
|
||||||
print(p.state)
|
print(p.sync.get_state_information())
|
||||||
|
```
|
||||||
|
|
||||||
|
Omit the `sync` attribute to get coroutines.
|
||||||
|
|
||||||
Errors reported by the device are raised as SmartDeviceExceptions,
|
Errors reported by the device are raised as SmartDeviceExceptions,
|
||||||
and should be handled by the user of the library.
|
and should be handled by the user of the library.
|
||||||
|
@ -18,6 +18,7 @@ class SmartStrip(SmartPlug):
|
|||||||
"""Representation of a TP-Link Smart Power Strip.
|
"""Representation of a TP-Link Smart Power Strip.
|
||||||
|
|
||||||
Usage example when used as library:
|
Usage example when used as library:
|
||||||
|
```python
|
||||||
p = SmartStrip("192.168.1.105")
|
p = SmartStrip("192.168.1.105")
|
||||||
|
|
||||||
# query the state of the strip
|
# query the state of the strip
|
||||||
@ -33,6 +34,9 @@ class SmartStrip(SmartPlug):
|
|||||||
|
|
||||||
# change state of a single outlet
|
# change state of a single outlet
|
||||||
p.plugs[0].sync.turn_on()
|
p.plugs[0].sync.turn_on()
|
||||||
|
```
|
||||||
|
|
||||||
|
Omit the `sync` attribute to get coroutines.
|
||||||
|
|
||||||
Errors reported by the device are raised as SmartDeviceExceptions,
|
Errors reported by the device are raised as SmartDeviceExceptions,
|
||||||
and should be handled by the user of the library.
|
and should be handled by the user of the library.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user