- добавлена поддержка платы ELBEAR ACE-NANO; - добавлена поддержка плат ELSOMIK OEM и SE; - добавлена возможность работы в режиме отладки для всех плат, входящих в состав пакета. Доступно для версии ArduinoIDE 2 и выше; - добавлена поддержка библиотеки FreeRTOS; - добавлена поддержка библиотеки IRremote; - добавлена поддержка библиотеки OneWire; - добавлена поддержка аппаратного I2C0 для плат START-MIK32 и ELSOMIK. Для работы с ним доступен экземпляр класса Wire1; - добавлена поддержка аппаратного SPI0 для всех плат, входящих в пакет. Для работы с ним доступен экземпляр класса SPI1; - увеличено быстродействие функций digitalWrite, digitalRead; - исправлены известные ошибки. Co-authored-by: KlassenTS <klassen@elron.tech> Co-committed-by: KlassenTS <klassen@elron.tech>
101 lines
3.7 KiB
C++
101 lines
3.7 KiB
C++
/*
|
|
* ControlRelay.cpp
|
|
*
|
|
* Toggles an output pin at each command received
|
|
* An IR detector/demodulator must be connected to the input RECV_PIN.
|
|
* Initially coded 2009 Ken Shirriff http://www.righto.com
|
|
*
|
|
* This file is part of Arduino-IRremote https://github.com/Arduino-IRremote/Arduino-IRremote.
|
|
*
|
|
************************************************************************************
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2009-2021 Ken Shirriff, Armin Joachimsmeyer
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is furnished
|
|
* to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
|
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
************************************************************************************
|
|
*/
|
|
#include <Arduino.h>
|
|
|
|
//#include "PinDefinitionsAndMore.h" // Define macros for input and output pin etc.
|
|
/*
|
|
* Helper macro for getting a macro definition as string
|
|
*/
|
|
#if !defined(STR_HELPER)
|
|
#define STR_HELPER(x) #x
|
|
#define STR(x) STR_HELPER(x)
|
|
#endif
|
|
|
|
#include <IRremote.hpp>
|
|
|
|
#define RELAY_PIN 5 // P0_4
|
|
#define IR_RECEIVE_PIN 4 // P0_1
|
|
|
|
void setup() {
|
|
pinMode(LED_BUILTIN, OUTPUT);
|
|
pinMode(RELAY_PIN, OUTPUT);
|
|
|
|
Serial.begin(9600);
|
|
while (!Serial)
|
|
; // Wait for Serial to become available. Is optimized away for some cores.
|
|
|
|
// Just to know which program is running on my Arduino
|
|
Serial.println(F("START " __FILE__ " from " __DATE__ "\r\nUsing library version " VERSION_IRREMOTE));
|
|
|
|
// Start the receiver and if not 3. parameter specified, take LED_BUILTIN pin from the internal boards definition as default feedback LED
|
|
IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
|
|
|
|
Serial.print(F("Ready to receive IR signals of protocols: "));
|
|
printActiveIRProtocols(&Serial);
|
|
Serial.println(F("at pin " STR(IR_RECEIVE_PIN)));
|
|
}
|
|
|
|
int on = 0;
|
|
unsigned long last = millis();
|
|
|
|
void loop() {
|
|
if (IrReceiver.decode()) {
|
|
// If it's been at least 1/4 second since the last
|
|
// IR received, toggle the relay
|
|
if (millis() - last > 250) {
|
|
on = !on;
|
|
Serial.print(F("Switch relay "));
|
|
if (on) {
|
|
digitalWrite(RELAY_PIN, HIGH);
|
|
Serial.println(F("on"));
|
|
} else {
|
|
digitalWrite(RELAY_PIN, LOW);
|
|
Serial.println(F("off"));
|
|
}
|
|
|
|
IrReceiver.printIRResultShort(&Serial);
|
|
IrReceiver.printIRSendUsage(&Serial);
|
|
Serial.println();
|
|
if (IrReceiver.decodedIRData.protocol == UNKNOWN) {
|
|
// We have an unknown protocol, print more info
|
|
Serial.println(F("Received noise or an unknown (or not yet enabled) protocol"));
|
|
IrReceiver.printIRResultRawFormatted(&Serial, true);
|
|
}
|
|
|
|
}
|
|
last = millis();
|
|
IrReceiver.resume(); // Enable receiving of the next value
|
|
}
|
|
}
|