Skip to content

Commit 3763012

Browse files
committed
changed irsendraw parameter to const, Arduino-IRremote#227
1 parent 96c40f6 commit 3763012

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

Contributors.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

1617
Note: This list is being updated constantly so please let [z3t0](https://github.com/z3t0) know if you have been missed.
1718

IRremote.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This library enables you to send and receive using infra-red signals on an Ardui
88

99
Check [here](http://z3t0.github.io/Arduino-IRremote/) for tutorials and more information.
1010

11-
## Version - 2.01
11+
## Version - 2.03
1212

1313
## Installation
1414
1. Navigate to the [Releases](https://github.com/z3t0/Arduino-IRremote/releases) page.

changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
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)

irSend.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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);

0 commit comments

Comments
 (0)