Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 419 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 419 Bytes

Tapo

C# interface to the TP-Link Tapo P100 and P110 smart plugs

var tapo = new TapoP110(new DeviceOptions("192.168.1.101", "username", "password"));

if(await tapo.IsTurnedOn())
{
    await tapo.TurnOff();
}
else
{
    await tapo.TurnOn();
}

var deviceInfo = await tapo.GetDeviceInfo();

Console.WriteLine(deviceInfo);

var energyUsage = await tapo.GetEnergyUsage();

Console.WriteLine(energyUsage);