@ -20,11 +20,19 @@
/ /
/ / Besides , other hardware specific information should be stated here
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/ / Custom hardware
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# if defined(MANUFACTURER) and defined(DEVICE)
/ / user has defined custom hardware , no need to check anything else
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/ / ESPurna Core
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# if defined(ESPURNA_CORE)
# el if defined(ESPURNA_CORE)
/ / This is a special device targeted to generate a light - weight binary image
/ / meant to be able to do two - step - updates :
@ -3326,7 +3334,7 @@
/ / Relays
# define RELAY1_PIN 15
# define RELAY1_TYPE RELAY_TYPE_NORMAL
/ / Light RGBW
# define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
# define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER
@ -3491,20 +3499,20 @@
# elif defined(TECKIN_SP20)
/ / Info
/ / Info
# define MANUFACTURER "TECKIN"
# define DEVICE "SP20"
/ / Buttons
/ / Buttons
# define BUTTON1_PIN 13
# define BUTTON1_MODE BUTTON_PUSHBUTTON | BUTTON_DEFAULT_HIGH
# define BUTTON1_RELAY 1
/ / Relays
/ / Relays
# define RELAY1_PIN 4
# define RELAY1_TYPE RELAY_TYPE_NORMAL
/ / LEDs
/ / LEDs
# define LED1_PIN 2
# define LED1_PIN_INVERSE 1
# define LED2_PIN 0
@ -3512,7 +3520,7 @@
# define LED2_MODE LED_MODE_FINDME
# define LED2_RELAY 0
/ / HJL01 / BL0937
/ / HJL01 / BL0937
# ifndef HLW8012_SUPPORT
# define HLW8012_SUPPORT 1
# endif
@ -3520,7 +3528,7 @@
# define HLW8012_CF1_PIN 14
# define HLW8012_CF_PIN 5
# define HLW8012_SEL_CURRENT LOW
# define HLW8012_SEL_CURRENT LOW
# define HLW8012_CURRENT_RATIO 25740
# define HLW8012_VOLTAGE_RATIO 313400
# define HLW8012_POWER_RATIO 3414290
@ -3559,32 +3567,32 @@
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# elif defined(PSH_WIFI_PLUG)
/ / Info
# define MANUFACTURER "PSH"
# define DEVICE "WIFI_PLUG"
/ / Relays
# define RELAY1_PIN 2
# define RELAY1_TYPE RELAY_TYPE_NORMAL
/ / LEDs
# define LED1_PIN 0
# define LED1_PIN_INVERSE 0
# elif defined(PSH_RGBW_CONTROLLER)
/ / Info
# define MANUFACTURER "PSH"
# define DEVICE "RGBW_CONTROLLER"
# define RELAY_PROVIDER RELAY_PROVIDER_LIGHT
# define LIGHT_PROVIDER LIGHT_PROVIDER_DIMMER
# define DUMMY_RELAY_COUNT 1
/ / LEDs
# define LED1_PIN 13
# define LED1_PIN_INVERSE 1
/ / Light
# define LIGHT_CHANNELS 4
# define LIGHT_CH1_PIN 5 / / RED
@ -3595,9 +3603,9 @@
# define LIGHT_CH2_INVERSE 0
# define LIGHT_CH3_INVERSE 0
# define LIGHT_CH4_INVERSE 0
# elif defined(PSH_WIFI_SENSOR)
/ / Info
# define MANUFACTURER "PSH"
# define DEVICE "WIFI_SENSOR"
@ -3726,13 +3734,13 @@
# define MICS2710_SUPPORT 1
# define MICS5525_SUPPORT 1
/ / MAX6675 14 11 10
# ifndef MAX6675_SUPPORT
# define MAX6675_SUPPORT 1
# endif
# define MAX6675_CS_PIN 14
# define MAX6675_SO_PIN 11
# define MAX6675_SCK_PIN 10
/ / MAX6675 14 11 10
# ifndef MAX6675_SUPPORT
# define MAX6675_SUPPORT 1
# endif
# define MAX6675_CS_PIN 14
# define MAX6675_SO_PIN 11
# define MAX6675_SCK_PIN 10
# elif defined(TRAVIS02)
@ -3848,12 +3856,9 @@
# define SSDP_SUPPORT 1
# define RF_SUPPORT 1
# endif
# else
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/ / Check definitions
/ / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# if not defined(MANUFACTURER) || not defined(DEVICE)
# error "UNSUPPORTED HARDWARE!!"
# endif