Skip to content

Commit

Permalink
Merge pull request #701 from uschindler/dev/doc_updates_thingsboard_2.11
Browse files Browse the repository at this point in the history
Update the PubSubClient version numbers and documentation in its root folder
  • Loading branch information
fredlcore authored Dec 30, 2024
2 parents 81356d5 + a50b9c3 commit d44566b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions BSB_LAN/src/PubSubClient/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
## ThingsBoard note

This is a fork of the main repository, which was last updated in 2020.
Since we have an SDK based on this client, we decided to continue with this repository.
We also believe that this library provides a lot of opportunities for people who want to build their own IoT devices.
As with our other open source repositories, we appreciate every contribution to this library.
This is a fork of the main repository, which was last updated in 2020.
Since we have an SDK based on this client, we decided to continue with this repository.
We also believe that this library provides a lot of opportunities for people who want to build their own IoT devices.
As with our other open source repositories, we appreciate every contribution to this library.


# Arduino Client for MQTT
Expand All @@ -21,9 +21,9 @@ Full API documentation is available here: https://pubsubclient.knolleary.net
## Limitations

- It can only publish QoS 0 messages. It can subscribe at QoS 0 or QoS 1.
- The maximum message size, including header, is **256 bytes** by default. This
is configurable via `MQTT_MAX_PACKET_SIZE` in `PubSubClient.h` or can be changed
by calling `PubSubClient::setBufferSize(size)`.
- Individual buffers are used to send and receive messages. The default maximum message size in each buffer, including header, is **256 bytes**. This
is configurable via `MQTT_MAX_PACKET_SIZE` in `PubSubClient.h` or each buffer's size can be changed at runtime
by calling `PubSubClient::setBufferSize(uint16_t receive_size, uint16_t send_size)`.
- The keepalive interval is set to 15 seconds by default. This is configurable
via `MQTT_KEEPALIVE` in `PubSubClient.h` or can be changed by calling
`PubSubClient::setKeepAlive(keepAlive)`.
Expand Down
2 changes: 1 addition & 1 deletion BSB_LAN/src/PubSubClient/library.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "git",
"url": "https://github.com/thingsboard/pubsubclient.git"
},
"version": "2.10.0",
"version": "2.11.0",
"exclude": "tests",
"examples": "examples/*/*.ino",
"frameworks": "arduino",
Expand Down
2 changes: 1 addition & 1 deletion BSB_LAN/src/PubSubClient/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=TBPubSubClient
version=2.10.0
version=2.11.0
author=ThingsBoard <[email protected]>
maintainer=ThingsBoard Team
sentence=A client library for MQTT messaging.
Expand Down

0 comments on commit d44566b

Please sign in to comment.