Skip to content

Commit 514db05

Browse files
committed
Added "library.properties"
Added "library.properties"
1 parent f23657d commit 514db05

File tree

10 files changed

+58
-7
lines changed

10 files changed

+58
-7
lines changed

IRLib2/examples/analyze/analyze.ino

-1
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,3 @@ void loop() {
128128
myReceiver.enableIRIn();
129129
};
130130
}
131-

IRLib2/examples/autoResume/autoResume.ino

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//It's better to include only the parts of library you really need.
88
//But for this example it's quick and easy. See "comboDump" example
99
//for a more efficient way.
10-
#include "IRLibAll.h"
10+
#include <IRLibAll.h>
1111

1212
IRrecvPCI myReceiver(2); //create receiver and pass pin number
1313
IRdecode myDecoder; //create decoder
@@ -33,4 +33,3 @@ void loop() {
3333
myReceiver.enableIRIn(); //Restart receiver
3434
}
3535
}
36-

IRLib2/examples/dump/dump.ino

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//It's better to include only the parts of library you really need.
77
//But for this example it's quick and easy. See "comboDump" example
88
//for a more efficient way.
9-
#include "IRLibAll.h"
9+
#include <IRLibAll.h>
1010

1111
IRrecvPCI myReceiver(2); //create receiver and pass pin number
1212
IRdecode myDecoder; //create decoder
@@ -26,4 +26,3 @@ void loop() {
2626
myReceiver.enableIRIn(); //Restart receiver
2727
}
2828
}
29-

IRLib2/examples/dumpFreq/dumpFreq.ino

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ void loop() {
5252
myFreq.disableFreqDetect();//Stop interrupt as soon as possible
5353
myDecoder.decode();
5454
myFreq.dumpResults(false);//Change to "true" for more detail
55-
myDecoder.dumpResults();
55+
myDecoder.dumpResults(false);
5656
myReceiver.enableIRIn();
5757
myFreq.enableFreqDetect();//Zero out previous results and restart ISR
5858
}
5959
}
60-

IRLib2/library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=IRLib2
2+
version=2.0.19
3+
author=Chris Young
4+
maintainer=Chris Young <[email protected]>
5+
sentence=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino.
6+
paragraph=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino. One of five libraries that work together. This one contains base decoding and receiving modules.
7+
category=Communication
8+
url=https://github.com/cyborg5/IRLib2/
9+
architectures=*
10+
includes=IRLibAll.h,IRLib2.h,IRLibDecodeBase.h,IRLibGlobals.h,IRLibRecvBase.h,IRLibRecvLoop.h
11+
depends=IRLibProtocols, IRLibRecv IRLibRecvPCI, IRLibFreq
Binary file not shown.

IRLibFreq/library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=IRLibFreq
2+
version=2.0.19
3+
author=Chris Young
4+
maintainer=Chris Young <[email protected]>
5+
sentence=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino.
6+
paragraph=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino. One of five libraries that work together. This one contains frequency measurement modules.
7+
category=Communication
8+
url=https://github.com/cyborg5/IRLib2/
9+
architectures=*
10+
includes=IRLibFreq.h
11+
depends=

IRLibProtocols/library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=IRLibProtocols
2+
version=2.0.19
3+
author=Chris Young
4+
maintainer=Chris Young <[email protected]>
5+
sentence=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino.
6+
paragraph=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino. One of five libraries that work together. This one contains base sending modules, hardware modules and protocol modules.
7+
category=Communication
8+
url=https://github.com/cyborg5/IRLib2/
9+
architectures=*
10+
includes=IRLib_HashRaw.h, IRLib_P01_NEC.h, IRLib_P02_Sony.h, IRLib_P03_RC5.h, IRLib_P04_RC6.h, IRLib_P05_Panasonic_Old.h, IRLib_P06_JVC.h, IRLib_P07_NECx.h, IRLib_P08_Samsung36.h, IRLib_P09_GICable.h, IRLib_P10_DirecTV.h, IRLib_P11_RCMM.h, IRLib_P12_CYKM.h, IRLib_P99_Additional.h, IRLibCombo.h, IRLibHardware.h, IRLibProtocols.h, IRLibSAMD21.h, IRLibSAMD51.h, IRLibSendBase.h
11+
depends=IRLib2

IRLibRecv/library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=IRLib2
2+
version=2.0.19
3+
author=Chris Young
4+
maintainer=Chris Young <[email protected]>
5+
sentence=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino.
6+
paragraph=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino. One of five libraries that work together. This one contains the receiver module for the 50µs interrupt timer.
7+
category=Communication
8+
url=https://github.com/cyborg5/IRLib2/
9+
architectures=*
10+
includes=IRLibRecv.h
11+
depends=IRLibProtocols

IRLibRecvPCI/library.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name=IRLib2
2+
version=2.0.19
3+
author=Chris Young
4+
maintainer=Chris Young <[email protected]>
5+
sentence=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino.
6+
paragraph=A Library for Receiving, Decoding and Sending Infrared Signals Using Arduino. One of five libraries that work together. This one contains the receiver module for the PCI version.
7+
category=Communication
8+
url=https://github.com/cyborg5/IRLib2/
9+
architectures=*
10+
includes=IRLibRecv.h
11+
depends=IRLibProtocols

0 commit comments

Comments
 (0)