Tapo P100 IOT plug implementation

This is an implementation for the TPLink Tapo P100 wifi enabled smart plug

Лицензия

Лицензия

Группа

Группа

com.adeptues
Идентификатор

Идентификатор

p100
Последняя версия

Последняя версия

0.0.2-RELEASE
Дата

Дата

Тип

Тип

jar
Описание

Описание

Tapo P100 IOT plug implementation
This is an implementation for the TPLink Tapo P100 wifi enabled smart plug
Ссылка на сайт

Ссылка на сайт

https://github.com/adeptues/p100
Система контроля версий

Система контроля версий

https://github.com/adeptues/p100/tree/master

Скачать p100

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.adeptues/p100/ -->
<dependency>
    <groupId>com.adeptues</groupId>
    <artifactId>p100</artifactId>
    <version>0.0.2-RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/com.adeptues/p100/
implementation 'com.adeptues:p100:0.0.2-RELEASE'
// https://jarcasting.com/artifacts/com.adeptues/p100/
implementation ("com.adeptues:p100:0.0.2-RELEASE")
'com.adeptues:p100:jar:0.0.2-RELEASE'
<dependency org="com.adeptues" name="p100" rev="0.0.2-RELEASE">
  <artifact name="p100" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.adeptues', module='p100', version='0.0.2-RELEASE')
)
libraryDependencies += "com.adeptues" % "p100" % "0.0.2-RELEASE"
[com.adeptues/p100 "0.0.2-RELEASE"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
commons-codec : commons-codec jar 1.15
com.squareup.okhttp3 : okhttp jar 4.9.1
com.fasterxml.jackson.core : jackson-databind jar 2.12.2

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.13.2

Модули Проекта

Данный проект не имеет модулей.

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", "example@googlemail.com", "Password1");
        plugP100.handshake();
        plugP100.login();
        plugP100.turnOn();
        Thread.sleep(5000);
        plugP100.turnOff();
    }

}

Версии библиотеки

Версия
0.0.2-RELEASE
0.0.1-RELEASE