Skip to content

Releases: thingsboard/thingsboard-gateway

ThingsBoard IoT Gateway

03 Mar 09:51
Compare
Choose a tag to compare

Minor release with the following improvements.

Main features:

  • Implemented RPC methods on the gateway:
    • gateway_devices - returns information about connected devices in format {"Device name":"Connector name"} ;
    • gateway_stats - returns information about count of processed messages in the last 5 seconds;
    • gateway_restart X - method restarts the gateway after X seconds. Returns {"success":true} after adding to scheduler;
    • gateway_reboot X - method reboots machine with gateway (if the user on whose behalf the gateway is running has rights for reboot). Returns {"success":true} after adding to scheduler;
    • gateway_ping - method to checking the gateway. Returns {"code":200, "resp":"pong"} ;
  • Added ability to use search of the OPC-UA node using namespaces identifiers and flags; #241

Additional features:

  • Updated dependencies;
  • [File storage] Improvements for events reading process;

Bug fixes:

  • [TB Client] Fix for #251;
  • [OPC-UA Connector] Fix for special symbols in the path expression;
  • [TB Utility] Fix for JSON Path expression and regular expression;

ThingsBoard IoT Gateway

26 Feb 11:01
Compare
Choose a tag to compare

Minor release with the following improvements.

Main features:

  • Implemented remote configuration feature;
  • Added support of JSON Path expressions in converters;
  • Added ability to implement RPC calls to connectors through general service;
  • Rewritten OPC-UA Connector search;
  • disableSubscriptions - if true the gateway disables subscriptions and activates read values in nodes only on scanning/re-scanning.
  • subCheckPeriodInMillis - interval in milliseconds to check information in nodes from subscription.

Additional features:

  • Improvements for collecting statistic about processed events;
  • Improvements for remote logging feature;

Bug fixes:

  • [OPC-UA Connector] Fix loading type definitions on the OPC-UA server #244;
  • [OPC-UA Connector] Fix for loading methods of the device;
  • [OPC-UA Connector] Fix for #249;
  • [MQTT Uplink Converter] Fix for digits interpretation;
  • [Modbus Uplink Converter] Fix for float digits interpretation;

ThingsBoard IoT Gateway

25 Feb 06:14
Compare
Choose a tag to compare

Open-source Python IoT Gateway.

Release notes:

  • Some fixes

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

24 Feb 13:40
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

  • Major fixes for the OPC-UA Connector:
    • Added ability to add few devices using one regular expression #247
    • Added rescan after interval from configuration #249
    • Added auto reconnect to OPC-UA server. #246
  • Improvements for remote logging feature.
  • Improvements for remote configuration feature.

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

17 Feb 07:34
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

- Major fixes for the OPC-UA Connector. #241
- Fixes for MQTT uplink converter #240

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

14 Feb 08:09
Compare
Choose a tag to compare

Open-source Python IoT Gateway.

Release notes:

- Major fixes for the OPC-UA Connector.

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

12 Feb 14:42
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

- Major fixes for the OPC-UA Connector.

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

10 Feb 14:44
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

- Major fix for the OPC-UA Connector.

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

10 Feb 07:53
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

- Fix for OPC-UA methods search

This is the release of the ThingsBoard Gateway. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.

ThingsBoard IoT Gateway

07 Feb 07:43
Compare
Choose a tag to compare
Pre-release

Open-source Python IoT Gateway.

Release notes:

- Added ability to use timestamp from MQTT messages in MQTT connector. Extepted tags: "ts" or "timestamp".

This is the release of the ThingsBoard Gateway. It is written in Python, unlike the previous one — based on Java. We are keen to improve our gateway, so within next releases you should expect new features and improvements.
The very basic data flow is as follows:
Incoming data goes to Connector — Connector forwards data to converter(s) and receives ThingsBoard suitable data — Connector sends the data to Persistent storage — ThingsBoard Gateway service delivers the data to ThingsBoard IoT Platform.
The Persistent storage (Event storage) is used to temporary store the telemetry, attributes and other events produced by Connectors until they are delivered to ThingsBoard. There are 2 types of storage — memory (RAM) and file (HDD).

Implemented connectors:

  • MQTT - You can connect to external MQTT brokers.
    Supported features:
Subscription to topics on the broker for collection incoming data.
Publishing to topics on the broker after processing RPC requests from the ThingsBoard.
Subscription to RPC response topic on the broker.
Handling shared attribute update requests from the ThingsBoard.
  • Modbus - You can connect to external Modbus servers/clients.
    Supported features:
Reading data from registers.
Processing data from devices as telemetry and attributes on ThingsBoard.
RTU over TCP/UDP.
Serial RTU/ASCII client.
Processing shared attribute update request from ThingsBoard.
Opportunity for call functions on device/server on receiving RPC request from ThingsBoard.
  • OPC-UA - You can connect to external OPC-UA servers.
    Supported features:
Recursive scan over nodes in server.
Processing data from devices as telemetry and attributes on ThingsBoard.
Processing RPC requests from ThingsBoard.
Processing shared attribute update request from ThingsBoard.
Recursive search over path in the server.
  • Bluetooth Low Energy - You can connect to different BLE devices.
    Supported features:
Processing data from devices as telemetry and attributes on ThingsBoard.
Read/Write/Notify characteristics methods are supported.
Processing shared attribute update request from ThingsBoard.
Processing RPC requests from ThingsBoard.
  • Requests - You can add any url's and send (GET, POST, etc.) HTTP requests
    Supported features:
Processing data from external endpoints of API and interpretation it as attributes/telemetry on ThingsBoard.
POST, PUT, DELETE, HEAD, PATCH, OPTIONS methods.
Added custom bytes/bits converter to process data from response.
Processing shared attribute update requests from ThingsBoard.
Processing RPC requests from ThingsBoard.