ApkDownload

Kendali Relay 8 Chanel Arduino Bluetooth APK

Ultima versione 1.0 per Windows
Aggiornata 31 January 2023

Informazioni sull'Applicazione

Versione 1.0 (#1)

Aggiornata 31 January 2023

Dimensioni APK 5 MB

È necessario Android Android 4.0+ (Ice Cream Sandwich)

Offerta da Agung Hari Wahyudi

Categoria Applicazione Strumenti Gratuiti

Applicazione id com.appybuilder.agunghariwahyudi002.Relay8Chanel

Note di sviluppatore Le domande per il controllo del relè 8 canali con Arduino e Bluetooth HC05

Istantanee

Clicca sull'immagine per vederla a schermo intero

Ultimi aggiornamenti

Novità di Kendali Relay 8 Chanel Arduino Bluetooth 1.0

Kendali Relay 8 Chanel

Descrizione

Schema di cablaggio
Arduino Bluetooth HC05
Arduino ---------- Bluetooth HC05
---------------- Tx Rx
---------------- Rx Tx
5V ---------------- 5V
GND --------------- GND

Arduino con 8 relè Chanel
Arduino --------------- Relè
2 ----------------- Relè 1
3 ----------------- Relè 2
4 ----------------- Relè 3
5 ----------------- Relè 4
6 ----------------- Relè 5
7 ----------------- Relè 6
8 ----------------- Relè 7
9 ----------------- Relè 8


Schizzo di Arduino

dati Bluetooth int;

void setup () {
  Serial.begin (9600);
  pinMode (2, OUTPUT); // relè 1
  pinMode (3, OUTPUT); // Relè 2
  pinMode (4, OUTPUT); // relè 3
  pinMode (5, OUTPUT); // Relè 4
  pinMode (6, OUTPUT); // relè 5
  pinMode (7, OUTPUT); // relè 6
  pinMode (8, OUTPUT); // relè 7
  pinMode (9, OUTPUT); // relè 8
  digitalWrite (2, HIGH);
  digitalWrite (3, HIGH);
  digitalWrite (4, HIGH);
  digitalWrite (5, HIGH);
  digitalWrite (6, HIGH);
  digitalWrite (7, HIGH);
  digitalWrite (8, HIGH);
  digitalWrite (9, HIGH);
}

void loop () {
 if (Serial.available ()) {
   DataBluetooth = Serial.read ();
   
   // Attiva il relè 1
   if (Bluetooth Data == 'A') {
     digitalWrite (2, LOW);
       }
       
    // Disattiva il relè 1
    if (Bluetooth Data == 'B') {
     digitalWrite (2, HIGH);
       }

    // Attiva il relè 2
    if (Bluetooth Data == 'C') {
     digitalWrite (3, LOW);
       }
       
    // Disattiva il relè 2
    if (Bluetooth Data == 'D') {
     digitalWrite (3, HIGH);
       }

      // Attiva il relè 3
   if (Bluetooth Data == 'E') {
     digitalWrite (4, LOW);
       }
       
    // Disattiva il relè 3
    if (Bluetooth Data == 'F') {
     digitalWrite (4, HIGH);
       }

       // Attiva il relè 4
   if (Bluetooth Data == 'G') {
     digitalWrite (5, LOW);
       }
       
    // Disattiva il relè 4
    if (Bluetooth Data == 'H') {
     digitalWrite (5, HIGH);
       }

   // Attiva il relè 5
   if (Bluetooth Data == 'I') {
     digitalWrite (6, LOW);
       }
       
    // Disattiva il relè 5
    if (Bluetooth Data == 'J') {
     digitalWrite (6, HIGH);
       }

    // Attiva il relè 6
    if (Bluetooth Data == 'K') {
     digitalWrite (7, LOW);
       }
       
    // Disattiva il relè 6
    if (Bluetooth Data == 'L') {
     digitalWrite (7, HIGH);
       }

      // Attiva il relè 7
   if (Bluetooth Data == 'M') {
     digitalWrite (8, LOW);
       }
       
    // Disattiva il relè 7
    if (Bluetooth Data == 'N') {
     digitalWrite (8, HIGH);
       }

       // Attiva il relè 8
   if (DataBluetooth == 'O') {
     digitalWrite (9, LOW);
       }
       
    // Disattiva il relè 8
    if (Bluetooth Data == 'P') {
     digitalWrite (9, HIGH);
       }
   }
}

Valutazioni e Recensioni

Valutazione: 1.0 su 5 · Less than 100 voti

(*) è obbligatorio

Versioni precedenti

Kendali Relay 8 Chanel Arduino Bluetooth 1.0 APK per Windows (#1, 5 MB)