- Fork tapo crate to add missing schedule/timer APIs - Add get_countdown_rules, get_schedule_rules, get_next_event methods - New readings: countdown_active, countdown_remain, schedule_count, schedule_active_count, next_event_time - Add local compilation to build script alongside cross-compilation - Implement offline polling - device collection continues when server disconnects - Add more device readings: on_time, signal_level, rssi, runtime_today/month, energy_month Vendored tapo fork in tapo-fork/ with minimal changes to add schedule APIs.
121 lines
4.6 KiB
Python
121 lines
4.6 KiB
Python
"""H100 Example"""
|
|
|
|
import asyncio
|
|
import os
|
|
|
|
from tapo import ApiClient
|
|
from tapo.requests import AlarmRingtone, AlarmVolume, AlarmDuration
|
|
from tapo.responses import KE100Result, S200BResult, T100Result, T110Result, T300Result, T31XResult
|
|
|
|
|
|
async def main():
|
|
tapo_username = os.getenv("TAPO_USERNAME")
|
|
tapo_password = os.getenv("TAPO_PASSWORD")
|
|
ip_address = os.getenv("IP_ADDRESS")
|
|
|
|
client = ApiClient(tapo_username, tapo_password)
|
|
hub = await client.h100(ip_address)
|
|
|
|
device_info = await hub.get_device_info()
|
|
print(f"Device info: {device_info.to_dict()}")
|
|
|
|
child_device_list = await hub.get_child_device_list()
|
|
|
|
for child in child_device_list:
|
|
if child is None:
|
|
print("Found unsupported device.")
|
|
elif isinstance(child, KE100Result):
|
|
print(
|
|
"Found KE100 child device with nickname: {}, id: {}, current temperature: {:.2f} {} and target temperature: {:.2f} {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
child.current_temperature,
|
|
child.temperature_unit,
|
|
child.target_temperature,
|
|
child.temperature_unit,
|
|
)
|
|
)
|
|
elif isinstance(child, S200BResult):
|
|
s200b = await hub.s200b(device_id=child.device_id)
|
|
trigger_logs = await s200b.get_trigger_logs(5, 0)
|
|
|
|
print(
|
|
"Found S200B child device with nickname: {}, id: {}, last 5 trigger logs: {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
[log.to_dict() for log in trigger_logs.logs],
|
|
)
|
|
)
|
|
elif isinstance(child, T100Result):
|
|
t100 = await hub.t100(device_id=child.device_id)
|
|
trigger_logs = await t100.get_trigger_logs(5, 0)
|
|
|
|
print(
|
|
"Found T100 child device with nickname: {}, id: {}, detected: {}, last 5 trigger logs: {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
child.detected,
|
|
[log.to_dict() for log in trigger_logs.logs],
|
|
)
|
|
)
|
|
elif isinstance(child, T110Result):
|
|
t110 = await hub.t110(device_id=child.device_id)
|
|
trigger_logs = await t110.get_trigger_logs(5, 0)
|
|
|
|
print(
|
|
"Found T110 child device with nickname: {}, id: {}, open: {}, last 5 trigger logs: {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
child.open,
|
|
[log.to_dict() for log in trigger_logs.logs],
|
|
)
|
|
)
|
|
elif isinstance(child, T300Result):
|
|
t300 = await hub.t300(device_id=child.device_id)
|
|
trigger_logs = await t300.get_trigger_logs(5, 0)
|
|
|
|
print(
|
|
"Found T300 child device with nickname: {}, id: {}, in_alarm: {}, water_leak_status: {}, last 5 trigger logs: {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
child.in_alarm,
|
|
child.water_leak_status,
|
|
[log.to_dict() for log in trigger_logs.logs],
|
|
)
|
|
)
|
|
elif isinstance(child, T31XResult):
|
|
t31x = await hub.t315(device_id=child.device_id)
|
|
temperature_humidity_records = await t31x.get_temperature_humidity_records()
|
|
|
|
print(
|
|
"Found T31X child device with nickname: {}, id: {}, temperature: {:.2f} {}, humidity: {}%, earliest temperature and humidity record available: {}.".format(
|
|
child.nickname,
|
|
child.device_id,
|
|
child.current_temperature,
|
|
child.temperature_unit,
|
|
child.current_humidity,
|
|
(
|
|
temperature_humidity_records.records[0].to_dict()
|
|
if temperature_humidity_records.records
|
|
else None
|
|
),
|
|
)
|
|
)
|
|
|
|
print(f"Triggering the alarm ringtone 'Alarm 1' at a 'Low' volume for '3 Seconds'...")
|
|
await hub.play_alarm(AlarmRingtone.Alarm1, AlarmVolume.Low, AlarmDuration.Seconds, seconds=3)
|
|
|
|
device_info = await hub.get_device_info()
|
|
print(f"Is device ringing?: {device_info.in_alarm}")
|
|
|
|
print("Stopping the alarm after 1 Second...")
|
|
await asyncio.sleep(1)
|
|
await hub.stop_alarm()
|
|
|
|
device_info = await hub.get_device_info()
|
|
print(f"Is device ringing?: {device_info.in_alarm}")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|