Sunday, May 25, 2025

Device Login Using Button

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

Indusboard coin is programmed like a login key for devices where the password can be stolen or seen by people in public.

In this program, the Indusboard is used as a login device/key for a laptop, in which the password of the laptop is programmed into the board and then by clicking the external button, the password is automatically entered and the laptop is unlocked.

Indusboard is used as a login device/key for a laptop, in which the password of the laptop is programmed into the board and then by clicking the external button, the password is automatically entered and the laptop is unlocked
Prototype where Indusboard is used as a login device/key for a laptop, in which the password of the laptop is programmed into the board and then by clicking the external button, the password is automatically entered and the laptop is unlocked
Components Required: S. no.ComponentsDescriptionQuantity
1.Indusboard coin3cm sized dev board.1
2.A laptopRequired with open login screen where the pin/password is to entered.1
3.USB type C cableTo connect the board to laptop.1
4.Push buttonTo give command to board so that laptop unlocks.1
5.Jumper wiresTo connect button to board.2

Code

 /* 
connect pin 9 of indusboard coin with a push button. 
enter password in line 40. 
*/ 
#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 = 9; // 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 = ""; 
String password = ""; 
// // Type the username 
// typeString(username); 
// Keyboard.write(KEY_TAB); // press Tab to switch to the password field 
// delay(500); 
// Type the password 
typeString(password); 
Keyboard.write(KEY_RETURN); // 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 */ 

Schematic and practical implementation:

Schematic for Indusboard Coin and Push Button

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

SHARE YOUR THOUGHTS & COMMENTS

Most Popular DIY Projects

EFY Prime

Unique DIY Projects

Electronics News

Truly Innovative Electronics

Latest DIY Videos

Electronics Components

Electronics Jobs

Calculators For Electronics