Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 476 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 476 Bytes

P100 Tapo

This is a java implementation for the tapo p100 iot power switch.

ported from https://github.com/fishbigger/TapoP100

API is similar

Usage

public class Main {
    public static void main(String[] args) {
        PlugP100 plugP100 = new PlugP100("192.168.x.x", "[email protected]", "Password1");
        plugP100.handshake();
        plugP100.login();
        plugP100.turnOn();
        Thread.sleep(5000);
        plugP100.turnOff();
    }

}