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 and led pins int l1 = 13; int l2

Arduino Beginner Experiments: Arduino and Light Blocking Sensor

HELLO THERE!!!     How are you guys? I hope everyone is fine and in a good mood always. This week, I would like to share with you guys my experiment on Arduino and Light Blocking Sensor. The objective of this experiment is to receive feedback from the sensor ( Digital and Analog) What is Light Blocking Sensor?      A linear hall sensor is a type of sensor which responds when the sensor is blocked out from light. The sensor is different for LDR's as LDR's responds to the amount of light it received while the light blocking sensor responds if the light is blocked out or not from the sensor.It can be used for both digital and analog measurements. HARDWARE: 1.Arduino UNO 2. Light Blocking Sensor SOFTWARE: 1.Arduino IDE CIRCUIT ASSEMBLY   Let's refer to the image of the blocking sensor below: The Connection of the Sensor to the Arduino is shown below: SENSOR  ----->       ARDUINO Signal      ------>     Any Analog/Digital pin

Arduino Tinkering : Controlling multiple LED with multiple potentiometers

HELLO THERE!!!!            How are you guys? I hope everyone is fine and well always. For this week's post, I would like to share with you guys a simple tinkering on Arduino, LED, and potentiometers. The objective of the experiment is to light up different amount of LED's with different intensity by controlling two potentiometers. Before starting, of course, we need to know what items are needed. The items needed are: 1. Arduino UNO   2. 4 to 5 LEDs 3. 2 Potentiometers The software used in this experiment is: 1. Arduino IDE. Now that all the hardware and software are obtained, let's go to the schematics of the circuit. The circuit is quite simple actually. The long legs of the LED's were connected to PWM pins while the shorter legs were connected to ground. The potentiometers however have three legs. The middle leg is connected to the analog pins (A0, A1) while the other two legs were connected to 5V and GND respectively. Don't w