default constructor and operator() for test

This commit is contained in:
2024-08-28 18:00:18 +03:00
parent c66d47e464
commit 784365181e
6 changed files with 16 additions and 7 deletions

View File

@ -12,7 +12,7 @@ public:
private:
uint16_t id; /// @brief Адрес передатчика
public:
IR_Encoder();
/// @brief Класс передатчика
/// @param addr Адрес передатчика
/// @param pin Вывод передатчика
@ -82,8 +82,8 @@ private:
uint8_t low;
uint8_t high;
};
static uint8_t *bitHigh;
static uint8_t *bitLow;
static uint8_t bitHigh[2];
static uint8_t bitLow[2];
uint8_t *currentBitSequence = bitLow;
volatile SignalPart signal;
};