#!/usr/bin/env python3
from pytapo import Tapo

user = "admin" # user you set in Advanced Settings -> Camera Account
password = "%0Bz!S@L6hGrRy%$a!g" # password you set in Advanced Settings -> Camera Account
host = "192.168.1.48" # ip of the camera, example: 192.168.1.52

tapo = Tapo(host, user, password)

print(tapo.getBasicInfo())

#tapo.moveMotor(0,10)
