Wallogit.com
2017 © Pedro Peláez
A PHP library to control and receive information from a TP-Link HS-110 smartplug.
[ 'ipAddr' => '192.168.1.42', //Or hostname eg: home.example.com 'port' => '9999' ], 'plug 2' => [ 'ipAddr' => '192.168.1.41', //Or hostname eg: home.example.com 'port' => '9999' ], 'plug 3' => [ 'ipAddr' => '192.168.1.43', //Or hostname eg: home.example.com 'port' => '9999' ] ]; $plug1 = new TPLinkHS110Device($config['plug 1'], 'plug 1'); $plug2 = new TPLinkHS110Device($config['plug 2'], 'plug 2'); $plug3 = new TPLinkHS110Device($config['plug 3'], 'plug 3'); usleep(500000); echo $plug1->switchOn(); usleep(500000); echo $plug2->switchOn(); usleep(500000); echo $plug3->switchOn(); sleep(2); echo $plug1->switchOff(); usleep(500000); echo $plug2->switchOff(); usleep(500000); echo $plug3->switchOff(); ?>
Any issues, feedback, suggestions or questions please use issue tracker here., (*1)
This project and its author is neither associated, nor affiliated with TP-LINK in anyway. See License section for more details., (*2)
This project is released under the [MIT][link-license] License., (*3)
© 2017 Slavomir Hustaty, All rights reserved., (*4)