طبعا احنا في الدرس ده شرح طريقه تشغيل المفتاح على (nodemcu) مع منصه ريموت اكس واي

في هذا الدرس طريقه تشغيل السويتش مع منصه ريموت اكس واي والتحكم من التليفون و من الزرار في نفس الوقت
صفحتنا www.facebook.com/seif3mad
مجموعة الواتس اب : https://cutt.us/dVIDS
دعم المال https://www.paypal.me/seif3mad
مجموعة Facebook https://cutt.us/A9tHe
⇊code
/*
-- New project --
This source code of graphical user interface
has been generated automatically by RemoteXY editor.
To compile this code using RemoteXY library 2.4.3 or later version
download by link http://remotexy.com/en/library/
To connect using RemoteXY mobile app by link http://remotexy.com/en/download/
- for ANDROID 4.5.1 or later version;
- for iOS 1.4.1 or later version;
This source code is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
*/
//////////////////////////////////////////////
// RemoteXY include library //
//////////////////////////////////////////////
// RemoteXY select connection mode and include library
#define REMOTEXY_MODE__ESP8266WIFI_LIB_POINT
#include
#include
// RemoteXY connection settings
#define REMOTEXY_WIFI_SSID "RemoteXY"
#define REMOTEXY_WIFI_PASSWORD "12345678"
#define REMOTEXY_SERVER_PORT 6377
// RemoteXY configurate
#pragma pack(push, 1)
uint8_t RemoteXY_CONF[] =
{ 255,1,0,1,0,25,0,10,13,0,
2,0,39,24,22,11,2,26,31,31,
46,46,0,46,46,0,65,4,66,26,
9,9 };
// 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
// output variables
uint8_t led_1_r; // =0..255 LED Red brightness
// other variable
uint8_t connect_flag; // =1 if wire connected, else =0
} RemoteXY;
#pragma pack(pop)
/////////////////////////////////////////////
// END RemoteXY include //
/////////////////////////////////////////////
#define PIN_SWITCH_1 5
int swstte; int rswstte;
void setup()
{
RemoteXY_Init ();
pinMode (PIN_SWITCH_1, OUTPUT);
pinMode (16, INPUT); //SW
// TODO you setup code
}
void loop()
{
RemoteXY_Handler ();
// digitalWrite(PIN_SWITCH_1, (RemoteXY.switch_1==0)?LOW:HIGH);
int sw = digitalRead(16);
if (sw==1&&swstte==1){digitalWrite(PIN_SWITCH_1, !digitalRead(PIN_SWITCH_1));swstte=0;}
else if (sw==0&&swstte==0){digitalWrite(PIN_SWITCH_1, !digitalRead(PIN_SWITCH_1));swstte=1;}
if (RemoteXY.switch_1==1&&rswstte==1){digitalWrite(PIN_SWITCH_1, !digitalRead(PIN_SWITCH_1));rswstte=0;}
else if (RemoteXY.switch_1==0&&rswstte==0){digitalWrite(PIN_SWITCH_1, !digitalRead(PIN_SWITCH_1)); rswstte=1;}
RemoteXY.led_1_r = (digitalRead(PIN_SWITCH_1)==HIGH)?255:0;
}
Keine Kommentare:
Kommentar veröffentlichen