Saturday, September 7, 2024
HomeElectronicsAutomated Login System Utilizing IndusBoard

Automated Login System Utilizing IndusBoard


Remark errors or corrections discovered for this circuit, and get the possibility to win massive!

An automated login system utilizing the IndusBoard Coin entails establishing the board to authenticate customers and grant entry to a system with out handbook intervention. This may be achieved by programming the IndusBoard, which is provided with an ESP32 module, to interface with consumer identification {hardware} reminiscent of RFID readers, biometric sensors, or keypads. When a consumer presents their credentials (e.g., an RFID card or fingerprint), the board processes the enter and verifies it towards saved knowledge.

If the credentials are legitimate, the IndusBoard sends a sign to the linked system to finish the login course of, enabling seamless and safe entry. This setup may be programmed utilizing the Arduino IDE to deal with the authentication logic and communication protocols.

Purposes of automated login system is:

  • Routinely grant staff entry to workplace premises utilizing RFID playing cards or biometric scanners, guaranteeing solely approved personnel can enter.
  • Enable owners to unlock doorways and entry good residence programs utilizing fingerprint recognition or cell authentication, enhancing residence safety.
  • Safe delicate areas in hospitals and clinics by granting entry to approved medical workers by means of biometric verification.

Invoice of Supplies (BoM)

Elements Description Amount
IndusBoard Coin 3cm sized dev board 1
Breadboard 3.5 cm x 4.5 cm breadboard 1
Swap Pushbutton-2 Pin 1

Software program Code

#if ARDUINO_USB_MODE
#warning This sketch ought to be used when USB is in OTG mode
void setup(){}
void loop(){}
#else
#embrace "USB.h"
#embrace "USBHIDKeyboard.h"
USBHIDKeyboard Keyboard;
const int loginButton = 3; // Button to set off the login sequence
void setup() {
// initialize the button enter:
pinMode(loginButton, INPUT_PULLUP);
// initialize the keyboard:
Keyboard.start();
USB.start();
Serial.start(115200);
}
void loop() {
// verify if the login button is pressed:
if (digitalRead(loginButton) == LOW) {
loginSequence();
delay(5000); // wait 5 seconds earlier than permitting one other login
try
}
delay(5);
}
void loginSequence() {
// Change "YourUsername" and "YourPassword" together with your precise 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 

Connection

Schematic Diagram

Testing

Now we join the board with the USB and add the code within the indus board, then by urgent a button, the system routinely fills within the password, unlocking the locked password or logging into any server.

– Commercial –


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

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments