Skip to main content

Many Ways To Light Up LED Part 4: LED Control Using Mouse and Arduino

HELLO THERE!!!!

       How are you guys? I hope everyone is fine and good always. This week, I would like to share with you guys on controlling LED by using Arduino and Processing. Last month, I have shown nearly similar experiment but by using keyboard. The output of this experiment will be the on/off of LED when mouse is clicked. I had done this experiment quite a long time ago and decided to share with  you guys.


     Ok, first things first, the items needed for this experiment.

Hardware:
1. Arduino UNO( or any Arduino)

2. LED





3.330 ohm resistor recommended






Software:
1.Arduino IDE
2. Processing IDE

Ok now, that's done, let's see how does the circuit is assembled. The circuit assembly is similar to the blink experiment.

The assembly of the circuit



Pretty easy right? Now, let's get going to the code. The code is divided into two part, Arduino and Processing. Now the Arduino code:


char val; //data received from the serial port
int led=13;//the led is in pin 13

void setup(){//arduino setup part,here we connect from processing to arduino
pinMode(led,OUTPUT);//set led as output
Serial.begin(9600);//begin serial communication at 9600 bit per second(speed)
}
void loop(){//where data from processing comes in,arduino decides what to do with the data and the led
if(Serial.available())
{
  val = Serial.read(); //if data from serial present, store it in val
}
 if (val == '1'){
digitalWrite(led,HIGH); //if val =1 led on
}
else{
  digitalWrite(led,LOW); //if val = 0 led off
}
delay(10); //delay 10 milliseconds to avoid overloading

}


The processing code:


import processing.serial.*;//importing files,instructions from serial
Serial port; //creating a class from the serial header

void setup() //the setup part
{
  size(400,400);//make our canvas size 400x400 pixels
 port = new Serial(this, "COM16", 9600);
}

void draw(){ //this is like the looping part in arduino
if (mousePressed == true)
{
  port.write('1');
  println("1"); //if mouse is pressed, then led on arduino should be on and 1 will be printed
}else
{ port.write('0'); //send a 0 to arduino,turn off led
}
 }


Upload the arduino code and run the processing code. A canvas will be formed from the processing code. Click on the canvas to turn on the LED.























Comments

Popular posts from this blog

Arduino and Multi Function Shield: Pots,LEDs and buzzers

HELLO THERE!!!!!    How are you guys? I hope everyone is fine and in good mood always. This week, I continue my tinkerings with the Multi Function Shield. In this experiment, I used the potentiometer in the shield to control the LEDs in the shield. Without further wasting time, let's jump in straight to the experiment!! HARDWARE 1.ARDUINO UNO  2.MULTI-FUNCTION SHIELD SOFTWARE: 1. ARDUINO IDE CIRCUIT ASSEMBLY    The circuit assembly is fairly simple. Just attach the multi function shield on top of Arduino properly. Please attach the shield properly as failure to do so would cause the shield  not to function as intended. CODING THE ARDUINO: Let's refer to the multi-function shield image below: Referring to the image of the shield, it can be seen that the potentiometer (blue object near buttons) is connected to pin A0 (analog 0)     int pot = A0; //declaring the pot ...

Mixing Color with RGB LED!!

HELLO THERE!!!     Hi everybody!! How are you guys? This week, I am going to share with you guys a fun experiment that I did during the weekends. The objective of this experiment is to use the RGB LED to output different colors. Without wasting further time, let's get into the experiment!! HARDWARE: 1.Arduino UNO 2. 3 Potentiometer 3. RGB LED ( I used the Keyes RGB LED) SOFTWARE: 1.Arduino IDE CIRCUIT ASSEMBLY:   By referring to the image below: The RGB LED has 4 pins, 1 GND, 1 pin each for the color red, green and blue. RGB LED                      ----------> ARDUINO  GND(- sign of the pin)                  GND R,G,B                                              Any Digital pin(I used pin 9,10 and 11) T...

Arduino and Keyes KY-017 Mercury Tilt Sensor

HELLO THERE!!!     How are you guys? I hope everyone is fine and good as always. I am back in tinkering after a few months of hiatus( busy stuff :) ). So, today i would like to share with you guys on KY-017, which is a Keyes Mercury Tilt Sensor. KY-017 Sensor KY-017      The picture above shows the KY-017 Sensor from Keyes. It has 3 pins, A ground, A vcc, and A signal pin. If you look closely, there is a mercury ball inside the bulb like object. The mercury ball acts like a switch for this sensor. KY-017 Working Procedure: 1. When the sensor is not tilted, the mercury ball will be at the bottom of the bulb. This will complete the circuit and turns on the LED of the sensor. The output that is sent through the signal pin will be LOW. 2.When the sensor is tilted, the mercury ball will be at the top of the bulb(near at the sharper end). This will complete break circuit and turns off the LED of the sensor. The output that is sent through t...