New bitbang method for ESP8266 using built-in startWaveform() function (more accurate carrier generation -> better range)

This commit is contained in:
N-Storm 2019-04-02 13:38:32 +03:00
parent 24d6f32fda
commit 420d1ac743
2 changed files with 58 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#ifdef ESP8266
#include <IRsend.h> // From IRremoteESP8266 library
#include <stdint.h>
#endif
class IRSender
@ -70,6 +71,18 @@ class IRSenderIRremoteESP8266 : public IRSender
private:
IRsend _ir;
};
class IRSenderESP8266 : public IRSender
{
public:
IRSenderESP8266(uint8_t pin);
void setFrequency(int frequency);
void space(int spaceLength);
void mark(int markLength);
protected:
uint32_t _halfPeriodicTime;
};
#endif
#endif

45
IRSenderESP8266.cpp Normal file
View File

@ -0,0 +1,45 @@
#include <Arduino.h>
#ifdef ESP8266
#include <IRSender.h>
#include <core_esp8266_waveform.h>
// Send IR using the 'bit banging' with startWaveform function on ESP8266 etc.
IRSenderESP8266::IRSenderESP8266(uint8_t pin) : IRSender(pin)
{
pinMode(_pin, OUTPUT);
}
void IRSenderESP8266::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
}
// Send an IR 'mark' symbol, i.e. transmitter ON
void IRSenderESP8266::mark(int markLength)
{
long beginning = micros();
startWaveform(_pin, _halfPeriodicTime, _halfPeriodicTime, markLength);
while((int)(micros() - beginning) < markLength);
stopWaveform(_pin);
digitalWrite(_pin, LOW);
}
// Send an IR 'space' symbol, i.e. transmitter OFF
void IRSenderESP8266::space(int spaceLength)
{
digitalWrite(_pin, LOW);
if (spaceLength < 16383) {
delayMicroseconds(spaceLength);
} else {
delay(spaceLength/1000);
}
}
#endif