forked from ToniA/arduino-heatpumpir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IRSenderBitBang.cpp
45 lines (34 loc) · 1.05 KB
/
IRSenderBitBang.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include <Arduino.h>
#include <IRSender.h>
// Send IR using the 'bit banging' on ESP8266 etc.
IRSenderBitBang::IRSenderBitBang(uint8_t pin) : IRSender(pin)
{
pinMode(_pin, OUTPUT);
}
void IRSenderBitBang::setFrequency(int frequency)
{
// Enables IR output. The khz value controls the modulation frequency in kilohertz.
_halfPeriodicTime = 500/frequency; // T = 1/f but we need T/2 in microsecond and f is in kHz
(void)frequency;
}
// Send an IR 'mark' symbol, i.e. transmitter ON
void IRSenderBitBang::mark(int markLength)
{
long beginning = micros();
while((int)(micros() - beginning) < markLength){
digitalWrite(_pin, HIGH);
delayMicroseconds(_halfPeriodicTime);
digitalWrite(_pin, LOW);
delayMicroseconds(_halfPeriodicTime); //38 kHz -> T = 26.31 microsec (periodic time), half of it is 13
}
}
// Send an IR 'space' symbol, i.e. transmitter OFF
void IRSenderBitBang::space(int spaceLength)
{
digitalWrite(_pin, LOW);
if (spaceLength < 16383) {
delayMicroseconds(spaceLength);
} else {
delay(spaceLength/1000);
}
}