Skip to content

Commit 4ea4015

Browse files
committed
Laserdisplay: report temperature
1 parent 1358ecc commit 4ea4015

File tree

10 files changed

+642
-0
lines changed

10 files changed

+642
-0
lines changed

libraries/PubSubClientLD/CHANGES.txt

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
1.9
2+
* Do not split MQTT packets over multiple calls to _client->write()
3+
* API change: All constructors now require an instance of Client
4+
to be passed in.
5+
* Fixed example to match 1.8 api changes - dpslwk
6+
* Added username/password support - WilHall
7+
* Added publish_P - publishes messages from PROGMEM - jobytaffey
8+
9+
1.8
10+
* KeepAlive interval is configurable in PubSubClient.h
11+
* Maximum packet size is configurable in PubSubClient.h
12+
* API change: Return boolean rather than int from various functions
13+
* API change: Length parameter in message callback changed
14+
from int to unsigned int
15+
* Various internal tidy-ups around types
16+
1.7
17+
* Improved keepalive handling
18+
* Updated to the Arduino-1.0 API
19+
1.6
20+
* Added the ability to publish a retained message
21+
22+
1.5
23+
* Added default constructor
24+
* Fixed compile error when used with arduino-0021 or later
25+
26+
1.4
27+
* Fixed connection lost handling
28+
29+
1.3
30+
* Fixed packet reading bug in PubSubClient.readPacket
31+
32+
1.2
33+
* Fixed compile error when used with arduino-0016 or later
34+
35+
36+
1.1
37+
* Reduced size of library
38+
* Added support for Will messages
39+
* Clarified licensing - see LICENSE.txt
40+
41+
42+
1.0
43+
* Only Quality of Service (QOS) 0 messaging is supported
44+
* The maximum message size, including header, is 128 bytes
45+
* The keepalive interval is set to 30 seconds
46+
* No support for Will messages
47+

libraries/PubSubClientLD/LICENSE.txt

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2008-2012 Nicholas O'Leary
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)