Laravel ThingsBoard.io Client
ThingsBoard is an open-source IoT platform for data collection, processing, visualization, and device management. This project is a Laravel Package that provides convenient client SDK for Integrate with Thingsboard APIs.
You can install the package via composer
composer require jalallinux/laravel-thingsboard
You can publish config file to change default configs
php artisan vendor:publish --provider JalalLinuX\\Thingsboard\\LaravelThingsboardServiceProvider --tag config
You can publish config file to change default languages
php artisan vendor:publish --provider JalalLinuX\\Thingsboard\\LaravelThingsboardServiceProvider --tag lang
User
class must implement JalalLinuX\Thingsboard\Interfaces\ThingsboardUser
like this:
class User extends Authenticatable implements JalalLinuX\Thingsboard\Interfaces\ThingsboardUser
{
public function getThingsboardEmailAttribute(): string
{
return $this->attributes['thingsboard_email'];
}
public function getThingsboardPasswordAttribute(): string
{
return $this->attributes['thingsboard_password'];
}
public function getThingsboardAuthorityAttribute(): EnumAuthority
{
return EnumAuthority::from($this->attributes['thingsboard_authority']);
}
...
Then can use trait JalalLinuX\Thingsboard\Traits\ThingsboardUser
like this:
class User extends Authenticatable implements JalalLinuX\Thingsboard\Interfaces\ThingsboardUser
{
use \JalalLinuX\Thingsboard\Traits\ThingsboardUser
...
}
use JalalLinuX\Thingsboard\Entities\DeviceApi;
/** Without Authentication */
DeviceApi::instance()->setAttribute('deviceToken', 'A1_TEST_TOKEN')->postTelemetry([...])
/** With Authentication */
Device::instance()->withUser($tenantUser)->getDeviceById('ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')
Device::instance()->withUser($tenantUser)->setAttribute('id', 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')->getDeviceById()
Device::instance(['id' => 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6'])->withUser($tenantUser)->getDeviceById()
/** Without Authentication */
thingsboard()->deviceApi()->setAttribute('deviceToken', 'A1_TEST_TOKEN')->postDeviceAttributes([...])
/** With Authentication */
thingsboard()->device()->withUser($tenantUser)->getDeviceById('ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')
thingsboard($tenantUser)->device()->setAttribute('id', 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6')->getDeviceById()
thingsboard()->device(['id' => 'ca3b8fc0-dcf6-11ed-a299-0f591673a2d6'])->withUser($tenantUser)->getDeviceById()
Please see CHANGELOG for more information on what has changed recently.
The MIT License (MIT). Please see License File for more information.