Skip to content

Instantly share code, notes, and snippets.

View yashx's full-sized avatar
🎯
Focusing

Yash Grover yashx

🎯
Focusing
View GitHub Profile
@yashx
yashx / BluetoothControlledLedArduinoCode.ino
Last active April 28, 2019 06:39
Arduino code for my youtube tutorial for making bluetooth controlled leds with arduino
#define LED1 2
#define LED2 5
#define LED3 7
#define LED4 8
char ch;
void setup() {
// put your setup code here, to run once:
pinMode(LED1,OUTPUT);
@yashx
yashx / arduinoSwitchesArduinoSample.ino
Last active February 5, 2021 22:55
Sample template to make arduino projects that can work with my app on play store
char ch;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly: