PHP code example of williamson / tplinksmartplug
1. Go to this page and download the library: Download williamson/tplinksmartplug library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
williamson / tplinksmartplug example snippets
'providers' => [
Williamson\TPLinkSmartplug\Laravel\TPLinkServiceProvider::class,
]
'aliases' => [
"TPLink" => Williamson\TPLinkSmartplug\Laravel\Facades\TPLinkFacade::class
]
return [
'lamp' => [
'ip' => '192.168.1.100' ,
'port' => '9999' ,
],
];
$tpManager = new TPLinkManager($configArray);
$tpDevice = $tpManager->device('lamp' )
TPLink::device('lamp' )
$tpDevice = app('tplink' )->device('lamp' );
$tpDevice = app(TPLinkManager::class)->device('lamp' );
$tpDevice->sendCommand(TPLinkCommand::systemInfo());
TPLink::device('lamp' )->sendCommand(TPLinkCommand::systemInfo());
$tpDevice->sendCommand(TPLinkCommand::systemInfo());
$tpDevice->sendCommand(TPLinkCommand::setLED(false ));
TPLink::device('lamp' )->sendCommand(TPLinkCommand::setLED(false ));
$tpDevice->sendCommand(TPLinkCommand::setLED(false ));
$tpDevice->togglePower();
TPLink::device('lamp' )->togglePower();
$tpDevice->togglePower();
$ php artisan vendor:publish --provider='Williamson\TPLinkSmartplug\Laravel\TPLinkServiceProvider'