Skip to content

Commit 3b133f6

Browse files
authored
V2.1.0 release
* Bump library version to v2.1.0 - Feature release * Support sending Pronto IR codes. * Initial support for sending Fujitsu A/C codes. - Minor improvements to examples. * Add Fujitsu demo code to Travis checks. (#260) We missed adding the example code for Fujitsu A/C to Travis in PR #259
1 parent 964bd60 commit 3b133f6

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ script:
2828
- arduino --verify --board $BD $PWD/examples/IRsendDemo/IRsendDemo.ino
2929
- arduino --verify --board $BD $PWD/examples/JVCPanasonicSendDemo/JVCPanasonicSendDemo.ino
3030
- arduino --verify --board $BD $PWD/examples/TurnOnDaikinAC/TurnOnDaikinAC.ino
31+
- arduino --verify --board $BD $PWD/examples/TurnOnFujitsuAC/TurnOnFujitsuAC.ino
3132
- arduino --verify --board $BD $PWD/examples/TurnOnKelvinatorAC/TurnOnKelvinatorAC.ino
3233
- arduino --verify --board $BD $PWD/examples/TurnOnMitsubishiAC/TurnOnMitsubishiAC.ino
3334
- arduino --verify --board $BD $PWD/examples/IRsendProntoDemo/IRsendProntoDemo.ino

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
This library enables you to **send and receive** infra-red signals on an ESP8266 using Arduino framework (https://github.com/esp8266/Arduino)
66

7-
## v2.0.0 Now Available
8-
Version 2.0 of the library is now available. This is a large change to existing versions. You will need to change your pre-v2.0 code slightly to work with this version. You can read more about the changes on our [wiki](https://github.com/markszabo/IRremoteESP8266/wiki/Upgrading-to-v2.0) page.
7+
## v2.1 Now Available
8+
Version 2.1 of the library is now available. This is a large change to existing versions. You will need to change your pre-v2.0 code slightly to work with this version. You can read more about the changes on our [wiki](https://github.com/markszabo/IRremoteESP8266/wiki/Upgrading-to-v2.0) page.
99
Please [report an issue](https://github.com/markszabo/IRremoteESP8266/issues/new) if you find any problems with the documentation or the library itself.
1010

1111
## History

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "IRremoteESP8266",
3-
"version": "2.0.3",
3+
"version": "2.1.0",
44
"keywords": "infrared, ir, remote, esp8266",
55
"description": "Send and receive infrared signals with multiple protocols (ESP8266)",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=IRremoteESP8266
2-
version=2.0.3
2+
version=2.1.0
33
author=Sebastien Warin, Mark Szabo, Ken Shirriff, David Conran
44
maintainer=Mark Szabo, David Conran, Sebastien Warin, Roi Dayan, Massimiliano Pinto
55
sentence=Send and receive infrared signals with multiple protocols (ESP8266)

src/IRremoteESP8266.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#endif
4646

4747
// Library Version
48-
#define _IRREMOTEESP8266_VERSION_ "2.0.3"
48+
#define _IRREMOTEESP8266_VERSION_ "2.1.0"
4949
// Supported IR protocols
5050
// Each protocol you include costs memory and, during decode, costs time
5151
// Disable (set to false) all the protocols you do not need/want!

0 commit comments

Comments
 (0)