Version: 1.0
Status: ⚫⚪⚪
Power plugin for Thunder framework.
This document describes purpose and functionality of the Power plugin. It includes detailed specification about its configuration, methods and properties provided.
All identifiers of the interfaces described in this document are case-sensitive. Thus, unless stated otherwise, all keywords, entities, properties, relations and actions should be treated as such.
The table below provides and overview of acronyms used in this document and their definitions.
Acronym | Description |
---|---|
API | Application Programming Interface |
HTTP | Hypertext Transfer Protocol |
JSON | JavaScript Object Notation; a data interchange format |
JSON-RPC | A remote procedure call protocol encoded in JSON |
The table below provides and overview of terms and abbreviations used in this document and their definitions.
Term | Description |
---|---|
callsign | The name given to an instance of a plugin. One plugin can be instantiated multiple times, but each instance the instance name, callsign, must be unique. |
Ref ID | Description |
---|---|
HTTP | HTTP specification |
JSON-RPC | JSON-RPC 2.0 specification |
JSON | JSON specification |
Thunder | Thunder API Reference |
The table below lists configuration options of the plugin.
Name | Type | Description |
---|---|---|
callsign | string | Plugin instance name (default: Power) |
classname | string | Class name: Power |
locator | string | Library name: libThunderPower.so |
startmode | string | Determines if the plugin shall be started automatically along with the framework |
configuration | object | (optional) |
configuration?.powerkey | number | (optional) Key associated as powerkey |
configuration?.offmode | string | (optional) Type of offmode |
configuration?.control | boolean | (optional) Enable control clients |
configuration?.gpiopin | number | (optional) GGIO pin (Broadcom) |
configuration?.gpiotype | sting | (optional) GPIO type (Broadcom) |
configuration?.statechange | number | (optional) Statechange (Broadcom) |
This plugin implements the following interfaces:
- Power.json (version 1.0.0) (compliant format)
The following methods are provided by the Power plugin:
Power interface methods:
Method | Description |
---|---|
set | Sets power state |
set method
Sets power state.
Name | Type | Description |
---|---|---|
params | object | |
params.powerstate | string | Power state (must be one of the following: on, activestandby, passivestandby, suspendtoram, hibernate, poweroff) |
params.timeout | number | Time to wait for power state change |
Name | Type | Description |
---|---|---|
result | null | Always null |
Code | Message | Description |
---|---|---|
1 | ERROR_GENERAL |
General failure |
29 | ERROR_DUPLICATE_KEY |
Trying to set the same power mode |
5 | ERROR_ILLEGAL_STATE |
Power state is not supported |
30 | ERROR_BAD_REQUEST |
Invalid Power state or Bad JSON param data format |
{
"jsonrpc": "2.0",
"id": 42,
"method": "Power.1.set",
"params": {
"powerstate": "on",
"timeout": 0
}
}
{
"jsonrpc": "2.0",
"id": 42,
"result": null
}
The following properties are provided by the Power plugin:
Power interface properties:
Property | Description |
---|---|
state RO | Power state |
state property
Provides access to the power state.
This property is read-only.
Name | Type | Description |
---|---|---|
result | string | Power state (must be one of the following: on, activestandby, passivestandby, suspendtoram, hibernate, poweroff) |
{
"jsonrpc": "2.0",
"id": 42,
"method": "Power.1.state"
}
{
"jsonrpc": "2.0",
"id": 42,
"result": "on"
}