Arduino One Button ON/OFF

Arduino One Button ON/OFF$0.69

Rated 0.00/5 (0) —  Free Android application by Antonio Sergio Arduino

Advertisements

About Arduino One Button ON/OFF

Descrição:

Funcionamento do aplicativo apenas com dispositivos conectados via bluetooth;

Passo a passo:

1- Fazer a montagem no proto board conforme esquema elétrico;
2- Ligar o módulo bluetooth(JY MCU) e Arduino, veja que o led está piscando;
3- No Smartphone ligar o Bluetooth e entrar no aplicativo e pressionar o botão Connect;
4- Observe que o led do módulo bluetooth(JY MCU) estava piscando e quando está conectado para de piscar e fica aceso direto;
5- Os dispositivos estão conetctados via bluetooth - led está aceso direto.

6- Neste momento todos os botões do aplicativo funcionam e enviam dados ao módulo bluetooth e ao Arduino.


O aplicativo Arduino One Button ON/OFF instalado no Smartphone Android controla remotamente o Arduino com comunicação via bluetooth.

Porta digital configurada como saída: D7;
.
Controlar o acionamento(liga e deslida) de lâmpadas, abatjours, luminárias, motores, bombas, solenóides, contatores, forno elétrico, aparelhos eletrodomésticos, etc.


#include //
SoftwareSerial mySerial(2, 3); // 2-RX, 3-TX

int D7 = 7;

void setup()
{
mySerial.begin(9600);
pinMode(D7, OUTPUT);
}

void loop()
{
char caracter = mySerial.read();

if(caracter == 'A')
{
digitalWrite(D7,HIGH);
}

if(caracter == 'B')
{
digitalWrite(D7,LOW);
}

delay(10);
}


Se preferir didaticamente, pode se utilizar uma placa ou mesmo um proto-board com um led montado para verificar o acionamento do pino digital D7 utilizado como saída.

Obs. Neste projeto os pinos digitais D0 e D1 estão conectados ao RX e TX da placa Arduino e os pinos digitais D2 e D3 estão conectados ao RX e TX do módulo bluetooth, o pino digital D7 está conectado ao led e ou placa com módulo relé.

Utilize um smartphone com android, para instalar este “.apk”; Neste exemplo foi utilizado o Tablet Samsung Galaxy GT-P3100 Tab2 7.0” com android versão 4.0.

Instale o aplicativo Arduino One Button ON/OFF.apk no Smartphone Android;
Agora ligue o Bluetooth do Smartphone Android e abra o aplicativo Arduino BT Control Toggle;
Pressione “Connect”(se pedir senha, a senha default é 1234);
Escolha um dispositivo bluetooth na lista que deseja conectar (no exemplo o nome default é LINVOR);

Sobre a configuração do módulo Bluetooth JY_MCU.
Este módulo já vem configurado de fábrica com:
Baud rate: 9600 bps;
Data bits: 8 bits;
Stop bits: 1; Parity: none;
Resumo(9600 bps, 8N1);

Como funciona:
O aplicativo Arduino One Button ON/OFF instalado no Smartphone com Android comunica com o bluetooth que está conectado à serial(mySerial) pino 2-RX e 3-TX do Arduino que recebe entes dados que por sua vez , interpreta e faz o comando do relé(placa de acionamento de relés) que está conectado na porta digital D7 do Arduino.

Atenção: Quando estiver trabalhando com este aplicativo mantenha a tela sempre ligada(não utilize o modo dormir ou sleep) pois voce pode perder o controle sobre o dispositivo que estão sendo acionados.

Obs.: Para sair do aplicativo, verifique sempre antes se os botões estão no modo “OFF” – botão vermelho então pressione o botão “disconnect” e saia do aplicativo; Note que o bluetooth ficará piscando indicativo que o sistema está realmente desconectado.

Isto é tudo que voce precisa saber para construir seu programa:

Botão Power ON - VERDE - send: Caracter “A”;
Botão Power OFF - AZUL - send: Caracter “B”;

Gratis Programa código para Arduino BT Control Toggle.


#include //
SoftwareSerial mySerial(2, 3); // 2-RX, 3-TX

int D7 = 7;

void setup()
{
mySerial.begin(9600);
pinMode(D7, OUTPUT);
}

void loop()
{
char caracter = mySerial.read();

if(caracter == 'A')
{
digitalWrite(D7,HIGH);
}

if(caracter == 'B')
{
digitalWrite(D7,LOW);
}

delay(10);
}

http://sergioarduino.blogspot.com.br/p/arduino-one-button-on-off-descricao.html
http://sergioarduino.blogspot.com.br/ Description:

Operation of the application only with connected devices via bluetooth;

Walkthrough:

1 - Re-assemble the proto board as electric scheme;
2 - Connect the bluetooth (JY MCU) and Arduino module, see the LED is flashing;
3 - In Smartphone turn Bluetooth on and enter the application and press the Connect button;
4 - Note that the bluetooth module LED (JY MCU) and was blinking when connected to flashing and stay straight on;
5 - The devices are conetctados via bluetooth - Direct LED is lit.

6 - At this time all application buttons work and send data to the bluetooth module and the Arduino.


The Arduino One Button ON / OFF application installed on Android Smartphone remotely controls the communication with Arduino via bluetooth.

Digital port configured as output: D7;
.
Controlling the drive (league and deslida) lamps, abatjours, fixtures, motors, pumps, solenoids, contactors, electric oven, appliances, etc..


  # Include / /
 SoftwareSerial mySerial (2, 3) / / 2 RX-, TX-3

 int D7 = 7;

 void setup ()
{
 mySerial.begin (9600);
 pinMode (D7, OUTPUT);
}

 void loop ()
{
 char character = mySerial.read ();
 
 if (character == 'A')
{
 digitalWrite (D7, HIGH);
}

if (character == 'B')
{
 digitalWrite (D7, LOW);
}

 delay (10);
}


If you prefer didactically, can use a plate or even a proto-board with an LED mounted to verify the drive's digital pin D7 used as output.

Note this project the digital pins D0 and D1 are connected to the RX and TX of the Arduino board and the digital pins D2 and D3 are connected to RX and TX bluetooth module, the digital pin D7 is connected to the LED and relay module or board with .

Use a smartphone with android to install this "apk.", In this example we used the Samsung Galaxy Tablet GT-P3100 Tab2 7.0 "with android version 4.0.

Install the Arduino One Button ON / OFF.apk application on Android Smartphone;
Now turn on the Bluetooth Android Smartphone and open the Arduino BT Control Toggle application;
Press "Connect" (if prompt for password, the default password is 1234);
Choose a bluetooth device you want to connect in the list (in this example the default name is LINVOR);

About configuring the Bluetooth module JY_MCU.
This module comes factory configured with:
Baud rate: 9600 bps;
Data bits: 8 bits;
Stop bits: 1, Parity: none;
Summary (9600 bps, 8N1);

How it works:
The Arduino One Button ON / OFF application installed on Android Smartphone with communicating with the bluetooth which is connected to the serial (mySerial) pin 2 and 3-RX-TX Arduino that receives data entities which in turn, interprets and makes the command relay (relay drive plate) that is connected to the digital port of the Arduino D7.

Warning: When working with this application keep the screen always on (do not use sleep mode or sleep) because you may lose control of the device being powered.

Note: To exit the application, always check before if the buttons are in the "OFF" mode - press the red button "disconnect" button and exit the application; Note that the bluetooth will flash indicating that the system is actually disconnected.

This is all you need to know to build your program:

Power Button ON - GREEN - send: Character "A";
Power OFF button - BLUE - send: Character 'B';

Free program code to Arduino BT Toggle Control.


  # Include / /
 SoftwareSerial mySerial (2, 3) / / 2 RX-, TX-3

 int D7 = 7;

 void setup ()
{
 mySerial.begin (9600);
 pinMode (D7, OUTPUT);
}

 void loop ()
{
 char character = mySerial.read ();
 
 if (character == 'A')
{
 digitalWrite (D7, HIGH);
}

if (character == 'B')
{
 digitalWrite (D7, LOW);
}

 delay (10);
}

http://sergioarduino.blogspot.com.br/p/arduino-one-button-on-off-descricao.html
http://sergioarduino.blogspot.com.br/

How to Download / Install

Download and install Arduino One Button ON/OFF version 1.2 on your Android device!
Downloaded 10+ times, content rating: Everyone
Android package: appinventor.ai_antoniosergiosouzaalmeida.Arduino_One_Button_ON_OFF, download Arduino One Button ON/OFF.apk

All Application Badges

Paid
app
Android
1.5+
For everyone
Android app

App History & Updates

What's Changed
Funcionamento do aplicativo apenas com dispositivos conectados via bluetooth;
Observe que o led do módulo bluetooth(JY MCU) estava piscando e quando está conectado para de piscar e fica aceso direto;
Os dispositivos estão conetctados via bluetooth - led está aceso direto.
Gratis Programa código para Arduino BT Control Toggle.
http://sergioarduino.blogspot.com.br/p/arduino-one-button-on-off-descricao.html
http://sergioarduino.blogspot.com.br/
Price update  Price changed from $0.78 to $0.69.
More downloads  Arduino One Button ON/OFF reached 10 - 50 downloads
More downloads  Arduino One Button ON/OFF reached 5 - 10 downloads
Price update  Price changed from $0.99 to $0.78.

Oh snap! No comments are available for Arduino One Button ON/OFF at the moment. Be the first to leave one!