Home  /  Tools Apps  / Electric lock gate contro lamp on Windows Pc

Electric lock gate contro lamp on Windows Pc

Developed By: Antonio Sergio Arduino

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: December 27, 2023

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.0
Size 1 MB
Release Date June 18, 15
Category Tools Apps

Description from Developer:
Electronic Door Control, Electric Lock doors, Arduino Bluetooth devices .;

Drive (league and deslida) lamps, fans, TV, sound, lights, abatjours, motors, solenoids, contactors, ele... [read more]

App preview ([see all 25 screenshots]  /  [view video])

App preview

About this app

On this page you can download Electric lock gate contro lamp and install on Windows PC. Electric lock gate contro lamp is free Tools app, developed by Antonio Sergio Arduino. Latest version of Electric lock gate contro lamp is 1.0, was released on 2015-06-18 (updated on 2023-12-27). Estimated number of the downloads is more than 50. Overall rating of Electric lock gate contro lamp is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install Electric lock gate contro lamp on Windows?

Instruction on how to install Electric lock gate contro lamp on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install Electric lock gate contro lamp on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install Electric lock gate contro lamp using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "Electric lock gate contro lamp" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install Electric lock gate contro lamp on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "Electric lock gate contro lamp" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.0.

Download Electric lock gate contro lamp 1.0 on Windows PC – 1 MB

Electronic Door Control, Electric Lock doors, Arduino Bluetooth devices .;

Drive (league and deslida) lamps, fans, TV, sound, lights, abatjours, motors, solenoids, contactors, electric oven, appliances (110V / 220V), etc.

The BT Control Buttons Constructor application installed on the smartphone remotely controls the Arduino (via Bluetooth) with up to 4 channels (digital port pins D4, D5, D6 and D7), or any other pin, just change the Arduino code.

Through these pins can connect a card with up to 4 relays (sold on ebay or free market), which can control up to 4 devices handled residential mains (110V / 220V);

Drive (league and deslida) lamps, abatjours, lamps, motors, solenoids, contactors, electric oven, electrical appliances, etc.

How the App Electric lock gate control lamp.:

The Android smartphone connects to the Arduino via bluetooth module, and when you press the character button commands are sent and received serially by Arduino that will interpret these data and make driving decisions of the digital ports D4 to D7 respectively.

Function buttons:

Button1, Button2 and Button3: Push Button - Pulse Mode Button, used as push to open electronic gates or doors with electric lock;

Button4: Switche Mode Button, used as on / off switch for lights, fans, appliances, etc.

Commands:

Button1: Send pressed sends character "A" and sends loose character "X"
Button2: Send pressed sends character "B" and sends loose character "X"
Button3: Send pressed sends character "C" and sends loose character "X"
Button4: Send pressed ON mode sends character "D" and OFF mode sends character "E"

Obs .: The drives can act independently or simultaneously, facilitating its operation and opening multiple possibilities to the project as an example in a small home automation.


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

PROGRAM CODE ARDUINO COMPLETE;
CONNECTIONS SCHEME WITH LEDS;
CONNECTIONS SCHEME WITH RELAYS MODULES;
BILL OF MATERIAL;
PHOTOS AND VIDEOS;
OPERATING DESCRIPTION;
DESCRIPTION OF ALL THE CONTROLS AND pinouts ARDUINO;
CONTROL DEVICES LINKED TO MAINS 110 / 220VAC.

PROGRAM CODE ARDUINO FULL: Electric lock gate control lamp

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

// Declaration of variables ------------ ---------------
int ch1 = 4;
5 int = CH2;
6 int = CH3;
int ch4 = 7;

int count = 0;
contB int = 0;
contC int = 0;
contd int = 0;

 void setup ()
 {
 mySerial.begin (9600); // Initialize the serial on 9600 bps;
 
 pinMode (ch1, OUTPUT); // Arduino digital pin (D4-ch1);
 pinMode (CH 2, OUTPUT); // Arduino digital pin (D5-CH2);
 pinMode (ch3, OUTPUT); // Arduino digital pin (D6-CH3);
 pinMode (ch4, OUTPUT); // Arduino digital pin (D7-ch4);
 }

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

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

 if (character == 'B')
{
 digitalWrite (CH2, HIGH);
}
 if (character == 'C')
{
 digitalWrite (CH3, HIGH);
}
 if (character == 'D')
{
 digitalWrite (ch4, HIGH);
}
 if (character == 'E')
{
 digitalWrite (ch4, LOW);
}
 if (character == '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