طريقة التحكم في 4 مصابيح في المنزل عبر الهاتف الذكي | Control 4 Lamp with Arduino UNO - DIY Channel3

DIY Channel3

Arduino│ESP8266│ESP32│Drone│Robot

طريقة التحكم في 4 مصابيح في المنزل عبر الهاتف الذكي | Control 4 Lamp with Arduino UNO

مشاركة هذا


 المكونات الاساسية :

- Arduino UNO
- Relay 5v module 3 channel
- module Bluetooth HC-05
- 220v Lamp
- Jumper wires
- Smartphone 






الكود البرمجي هنا :

// 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,4,0,0,0,112,0,10,13,0,
  2,0,8,17,26,12,2,26,31,31,
  79,78,0,79,70,70,0,129,0,10,
  1,80,11,102,67,111,110,116,114,111,
  108,32,52,32,76,97,109,112,0,129,
  0,23,53,54,8,109,68,73,89,32,
  67,72,65,78,78,69,76,0,2,0,
  8,35,27,12,134,26,31,31,79,78,
  0,79,70,70,0,2,0,57,17,26,
  12,205,26,31,31,79,78,0,79,70,
  70,0,2,0,57,34,26,12,2,26,
  31,31,79,78,0,79,70,70,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 
  uint8_t switch_2; // =1 if switch ON and =0 if OFF 
  uint8_t switch_3; // =1 if switch ON and =0 if OFF 
  uint8_t switch_4; // =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_1 11
#define PIN_SWITCH_2 10
#define PIN_SWITCH_3 12
#define PIN_SWITCH_4 13


void setup() 
{
  RemoteXY_Init (); 
  
  pinMode (PIN_SWITCH_1, OUTPUT);
  pinMode (PIN_SWITCH_2, OUTPUT);
  pinMode (PIN_SWITCH_3, OUTPUT);
  pinMode (PIN_SWITCH_4, OUTPUT);
  
  // TODO you setup code
  
}

void loop() 

  RemoteXY_Handler ();
  
  digitalWrite(PIN_SWITCH_1, (RemoteXY.switch_1==0)?LOW:HIGH);
  digitalWrite(PIN_SWITCH_2, (RemoteXY.switch_2==0)?LOW:HIGH);
  digitalWrite(PIN_SWITCH_3, (RemoteXY.switch_3==0)?LOW:HIGH);
  digitalWrite(PIN_SWITCH_4, (RemoteXY.switch_4==0)?LOW:HIGH);
  
  // TODO you loop code
  // use the RemoteXY structure for data transfer
  // do not call delay() 


}

No comments:

Post a Comment