New
New
New
-- New --
//////////////////////////////////////////////
// RemoteXY include library //
//////////////////////////////////////////////
#include <RemoteXY.h>
// RemoteXY configurate
#pragma pack(push, 1)
uint8_t RemoteXY_CONF[] =
{ 255,8,0,0,0,243,0,10,221,1,
2,1,22,27,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,15,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,51,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,39,22,11,247,24,31,31,
217,133,216,186,217,132,217,130,0,216,
170,216,180,216,186,217,138,217,132,0,
2,1,22,63,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,75,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,87,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0,
2,1,22,3,22,11,219,24,31,31,
216,170,216,180,216,186,217,138,217,132,
0,217,133,216,186,217,132,217,130,0 };
// this structure defines all the variables and events of your control interface
struct {
// input variables
uint8_t switch_3; // =1 if switch ON and =0 if OFF
uint8_t switch_2; // =1 if switch ON and =0 if OFF
uint8_t switch_5; // =1 if switch ON and =0 if OFF
uint8_t switch_4; // =1 if switch ON and =0 if OFF
uint8_t switch_6; // =1 if switch ON and =0 if OFF
uint8_t switch_7; // =1 if switch ON and =0 if OFF
uint8_t switch_8; // =1 if switch ON and =0 if OFF
uint8_t switch_1; // =1 if switch ON and =0 if OFF
// other variable
uint8_t connect_flag; // =1 if wire connected, else =0
} RemoteXY;
#pragma pack(pop)
/////////////////////////////////////////////
// END RemoteXY include //
/////////////////////////////////////////////
#define PIN_SWITCH_3 D3
#define PIN_SWITCH_2 D2
#define PIN_SWITCH_5 D5
#define PIN_SWITCH_4 D4
#define PIN_SWITCH_6 D6
#define PIN_SWITCH_7 D7
#define PIN_SWITCH_8 D8
#define PIN_SWITCH_1 D1
void setup()
{
RemoteXY_Init ();
void loop()
{
RemoteXY_Handler ();
digitalWrite(PIN_SWITCH_3, (RemoteXY.switch_3==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_2, (RemoteXY.switch_2==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_5, (RemoteXY.switch_5==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_4, (RemoteXY.switch_4==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_6, (RemoteXY.switch_6==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_7, (RemoteXY.switch_7==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_8, (RemoteXY.switch_8==0)?LOW:HIGH);
digitalWrite(PIN_SWITCH_1, (RemoteXY.switch_1==0)?LOW:HIGH);