File tree Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Expand file tree Collapse file tree 5 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ These are the active contributors of this project that you may contact if there
1212- [ Neco777] ( https://github.com/neco777 ) : Active contributor
1313- [ Lauszus] ( https://github.com/lauszus ) : Active contributor
1414- [ csBlueChip] ( https://github.com/csbluechip ) : Active contributor, who contributed major and vital changes to the code base.
15+ - [ Sebazzz] ( https://github.com/sebazz ) : Contributor
1516
1617Note: This list is being updated constantly so please let [ z3t0] ( https://github.com/z3t0 ) know if you have been missed.
1718
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ class IRsend
257257 void enableIROut (int khz) ;
258258 void mark (unsigned int usec) ;
259259 void space (unsigned int usec) ;
260- void sendRaw (unsigned int buf[], unsigned int len, unsigned int hz) ;
260+ void sendRaw (const unsigned int buf[], unsigned int len, unsigned int hz) ;
261261
262262 // ......................................................................
263263# if SEND_RC5
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ This library enables you to send and receive using infra-red signals on an Ardui
88
99Check [ here] ( http://z3t0.github.io/Arduino-IRremote/ ) for tutorials and more information.
1010
11- ## Version - 2.01
11+ ## Version - 2.03
1212
1313## Installation
14141 . Navigate to the [ Releases] ( https://github.com/z3t0/Arduino-IRremote/releases ) page.
Original file line number Diff line number Diff line change 1+ ## 2.0.3 - 2016/02/20
2+ - Change IRSend Raw parameter to const [ PR] ( https://github.com/z3t0/Arduino-IRremote/pull/227 )
13
24## 2.0.2 - 2015/12/02
35- Added IRremoteInfo Sketch - [ PR] ( https://github.com/z3t0/Arduino-IRremote/pull/241 )
Original file line number Diff line number Diff line change 22#include " IRremoteInt.h"
33
44// +=============================================================================
5- void IRsend::sendRaw (unsigned int buf[], unsigned int len, unsigned int hz)
5+ void IRsend::sendRaw (const unsigned int buf[], unsigned int len, unsigned int hz)
66{
77 // Set IR carrier frequency
88 enableIROut (hz);
You can’t perform that action at this time.
0 commit comments