Electric lock gate contro lamp Application icon

Electric lock gate contro lamp 1.0

1 MB / 1+ Downloads / Rating 5.0 - 1 reviews


See previous versions

Electric lock gate contro lamp, developed and published by Antonio Sergio Arduino, has released its latest version, 1.0, on 2015-06-18. This app falls under the Tools category on the Google Play Store and has achieved over 50 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

Electric lock gate contro lamp APK available on this page is compatible with all Android devices that meet the required specifications (Android 2.3+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: appinventor.ai_antoniosergiosouzaalmeida.Electric_lock_and_gate_control_lamp

Updated: 10 years ago

Developer Name: Antonio Sergio Arduino

Category: Tools

Installation Instructions

This article outlines two straightforward methods for installing Electric lock gate contro lamp on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

Previous Versions

Electric lock gate contro lamp 1.0
2015-06-18 / 1 MB / Android 2.3+

About this app

Controle de Portão Eletrônico, Portas com Fechadura Elétrica, Dispositivos Arduino Bluetooth.;

Acionamento(liga e deslida) de luminárias, ventiladores, TV, Som, lâmpadas, abatjours, motores, solenóides, contatores, forno elétrico, eletrodomésticos(110V/220V), etc.

O aplicativo BT Control Buttons Constructor instalado no smartphone controla remotamente o Arduino(via bluetooth), com até 4 canais(porta digital pinos D4, D5, D6 e D7), ou qualquer outro pino, basta alterar o código Arduino.

Através destes pinos podemos conectar uma placa com até 4 relés(vendida no ebay ou mercado livre), onde podemos controlar até 4 equipamentos lidados a rede elétrica residencial(110V/220V);

Acionamento(liga e deslida) de lâmpadas, abatjours, luminárias, motores, solenóides, contatores, forno elétrico, aparelhos eletrodomésticos, etc.

Como Funciona o App. Electric lock gate control lamp:

O smartphone Android conecta com o Arduino através do módulo bluetooth, e quando pressionamos os botões os caracteres de comandos são enviados e recebidos serialmente pelo Arduino que vai interpretar estes dados e tomar decisões de acionamento das portas digitais D4 a D7 respectivamente.

Função dos botões:

Botão1, Botão2 e Botão3: Push Button - Pulse Mode Button, utilizado como pulsador para abrir portão eletrônico ou portas com fechadura elétrica;

Botão4:Switche Mode Button, utilizado como chave liga/desliga para luminárias, ventiladores, eletrodomésticos,etc

Comandos:

Botão1: Envia pressionado envia caractere "A" e solto envia caractere "X"
Botão2: Envia pressionado envia caractere "B" e solto envia caractere "X"
Botão3: Envia pressionado envia caractere "C" e solto envia caractere "X"
Botão4: Envia pressionado modo ON envia caractere "D" e modo OFF envia caractere "E"

Obs.: Os acionamentos podem atuar de forma independente ou simultânea, facilitando sua operação e abrindo multiplas possibilidades ao projeto como exemplo em uma pequena automação residencial.


Veja no Blogger: http://sergioarduino.blogspot.com.br/p/electric-lock-gate-control-lamp.html

PROGRAMA CÓDIGO ARDUINO COMPLETO;
ESQUEMA DE LIGAÇÕES COM LEDS;
ESQUEMA DE LIGAÇÕES COM MÓDULOS DE RELÉS;
LISTA DE MATERIAIS;
FOTOS E VÍDEOS;
DESCRIÇÃO DE FUNCIONAMENTO;
DESCRIÇÃO DE TODOS OS COMANDOS E PINAGENS DO ARDUINO;
CONTROLE DE DISPOSITIVOS LIGADOS A REDE ELÉTRICA 110/220VCA.

PROGRAMA CÓDIGO ARDUINO COMPLETO: Electric lock gate control lamp

//--------------Inclusion of libraries---------------
#include
SoftwareSerial mySerial(2, 3);

//------------Declaration of variables---------------
int ch1 = 4;
int ch2 = 5;
int ch3 = 6;
int ch4 = 7;

int contA = 0;
int contB = 0;
int contC = 0;
int contD = 0;

void setup()
{
mySerial.begin(9600);//Initialize the serial on 9600 bps;

pinMode(ch1, OUTPUT);//Pino digital do Arduino(D4-ch1);
pinMode(ch2, OUTPUT);//Pino digital do Arduino(D5-ch2);
pinMode(ch3, OUTPUT);//Pino digital do Arduino(D6-ch3);
pinMode(ch4, OUTPUT);//Pino digital do Arduino(D7-ch4);
}

void loop()
{
//-------Reading of the character by the serial---------
char caracter = mySerial.read();

//-----Receives and character counts between 1 and 2-----
if(caracter == 'A')
{
digitalWrite(ch1,HIGH);
}

if(caracter == 'B')
{
digitalWrite(ch2,HIGH);
}
if(caracter == 'C')
{
digitalWrite(ch3,HIGH);
}
if(caracter == 'D')
{
digitalWrite(ch4,HIGH);
}
if(caracter == 'E')
{
digitalWrite(ch4,LOW);
}
if(caracter == 'X')
{
digitalWrite(ch1,LOW);
digitalWrite(ch2,LOW);
digitalWrite(ch3,LOW);
}

delay(10);

}


Blogger: http://sergioarduino.blogspot.com.br/p/electric-lock-gate-control-lamp.html