كيفية التحكم في 3 مصابيح عبر الهاتف الذكي | Control 3 lamp with Arduino uno - DIY Channel3

DIY Channel3

Arduino│ESP8266│ESP32│Drone│Robot

كيفية التحكم في 3 مصابيح عبر الهاتف الذكي | Control 3 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,3,0,0,0,95,0,10,13,0,
  2,0,7,25,26,12,2,26,31,31,
  79,78,0,79,70,70,0,129,0,10,
  5,80,11,15,67,111,110,116,114,111,
  108,32,51,32,76,97,109,112,0,129,
  0,23,49,54,8,109,68,73,89,32,
  67,72,65,78,78,69,76,0,2,0,
  37,25,27,12,134,26,31,31,79,78,
  0,79,70,70,0,2,0,68,25,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 

    // 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


void setup() 
{
  RemoteXY_Init (); 
  
  pinMode (PIN_SWITCH_1, OUTPUT);
  pinMode (PIN_SWITCH_2, OUTPUT);
  pinMode (PIN_SWITCH_3, 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);
  
  // TODO you loop code
  // use the RemoteXY structure for data transfer
  // do not call delay() 


}

No comments:

Post a Comment