[Feature] Added Sonoff DUALR3 support with RainMaker example (#5980)

* [Feature] Added Sonoff DUALR3 support with RainMaker example

* [Feature] Added skip files for C3 and S2
This commit is contained in:
Pedro Minatel
2021-12-14 12:35:10 +00:00
committed by GitHub
parent 3750b14d74
commit fa03966fcf
5 changed files with 321 additions and 0 deletions

View File

@ -0,0 +1,27 @@
#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include <stdint.h>
#define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40
#define NUM_ANALOG_INPUTS 16
#define analogInputToDigitalPin(p) (((p)<20)?(esp32_adc2gpio[(p)]):-1)
#define digitalPinToInterrupt(p) (((p)<40)?(p):-1)
#define digitalPinHasPWM(p) (p < 34)
static const uint8_t TX = 1;
static const uint8_t RX = 3;
static const uint8_t BUTTON = 0;
static const uint8_t LED_LINK = 13;
static const uint8_t RELAY_2 = 14;
static const uint8_t RELAY_1 = 27;
static const uint8_t SWITCH_2 = 33;
static const uint8_t SWITCH_1 = 32;
static const uint8_t CSE7761_TX = 25;
static const uint8_t CSE7761_RX = 26;
#endif /* Pins_Arduino_h */