السلام عليكم في هذا المشروع سنقوم بانشاء تطبيق اسمه REMOTEXY
لتحكم في المصباح باستخدام لوحة أردوينو
// RemoteXY select connection mode and include library
#define REMOTEXY_MODE__SOFTSERIAL
#include <SoftwareSerial.h>
#include <RemoteXY.h>
// RemoteXY connection settings
#define REMOTEXY_SERIAL_RX 2
#define REMOTEXY_SERIAL_TX 3
#define REMOTEXY_SERIAL_SPEED 9600
#define REMOTEXY_ACCESS_PASSWORD "123456"
// RemoteXY configurate
#pragma pack(push, 1)
uint8_t RemoteXY_CONF[] =
{ 255,1,0,0,0,61,0,10,13,0,
2,0,27,22,44,16,2,26,31,31,
79,78,0,79,70,70,0,129,0,14,
5,80,11,135,67,111,110,116,114,111,
108,32,49,32,76,97,109,112,0,129,
0,23,49,54,8,246,68,73,89,32,
67,72,65,78,78,69,76,0 };
// this structure defines all the variables and events of your control interface
struct {
// input variables
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 //
/////////////////////////////////////////////
void setup()
{
RemoteXY_Init ();
// TODO you setup code
}
void loop()
{
RemoteXY_Handler ();
// TODO you loop code
// use the RemoteXY structure for data transfer
// do not call delay()
}
No comments:
Post a Comment