Friday, September 13, 2024

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages

Automatic Login System Using IndusBoard Coin

Comment errors or corrections found for this circuit, and get the chance to win big!

An automatic login system using the IndusBoard Coin involves setting up the board to authenticate users and grant access to a system without manual intervention. This can be achieved by programming the IndusBoard, which is equipped with an ESP32 module, to interface with user identification hardware such as RFID readers, biometric sensors, or keypads. When a user presents their credentials (e.g., an RFID card or fingerprint), the board processes the input and verifies it against stored data.

If the credentials are valid, the IndusBoard sends a signal to the connected system to complete the login process, enabling seamless and secure access. This setup can be programmed using the Arduino IDE to handle the authentication logic and communication protocols.

Applications of automatic login system is:

  • Automatically grant employees access to office premises using RFID cards or biometric scanners, ensuring only authorized personnel can enter.
  • Allow homeowners to unlock doors and access smart home systems using fingerprint recognition or mobile authentication, enhancing home security.
  • Secure sensitive areas in hospitals and clinics by granting access to authorized medical staff through biometric verification.

Bill of Materials (BoM)

Components DescriptionQuantity
IndusBoard Coin3cm sized dev board 1
Breadboard3.5 cm x 4.5 cm breadboard1
Switch Pushbutton-2 Pin1

Software Code

#if ARDUINO_USB_MODE
#warning This sketch should be used when USB is in OTG mode
void setup(){}
void loop(){}
#else
#include "USB.h"
#include "USBHIDKeyboard.h"
USBHIDKeyboard Keyboard;
const int loginButton = 3; // Button to trigger the login sequence
void setup() {
// initialize the button input:
pinMode(loginButton, INPUT_PULLUP);
// initialize the keyboard:
Keyboard.begin();
USB.begin();
Serial.begin(115200);
}
void loop() {
// check if the login button is pressed:
if (digitalRead(loginButton) == LOW) {
loginSequence();
delay(5000); // wait 5 seconds before allowing another login
attempt
}
delay(5);
}
void loginSequence() {
// Replace "YourUsername" and "YourPassword" with your actual login
credentials
// String username = "2662002";
String password = "2662002";
typeString(password);
Keyboard.write(0xB0); // press Enter to login
}
void typeString(String str) {
for (int i = 0; i < str.length(); i++) {
Keyboard.write(str[i]);
delay(100); // add a small delay between keystrokes
}
}
#endif /* ARDUINO_USB_MODE */

Connection

Schematic Diagram

Testing

Now we connect the board with the USB and upload the code in the indus board, then by pressing a button, the system automatically fills in the password, unlocking the locked password or logging into any server.

- Advertisement -

Author(s): Manjeet Vishwakarma,  Abhay Verma and Satywanti Kundu are B.Tech ECE students at GJUS&T HISAR

SHARE YOUR THOUGHTS & COMMENTS

EFY Prime

Unique DIY Projects

Electronics News

Truly Innovative Electronics

Latest DIY Videos

Electronics Components

Electronics Jobs

Calculators For Electronics

×