Hackster is hosting Impact Spotlights: Robotics. Watch the stream live on Thursday!Hackster is hosting Impact Spotlights: Robotics. Stream on Thursday!
caioreginato
Created May 23, 2018

Arduino Serial Plotter & Capacitors

Using Arduino Serial Plotter and LDR to watch effect of capacitors to stabilize circuits.

IntermediateWork in progress5,091
Arduino Serial Plotter & Capacitors

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
should be new version, with plotter in tools
×1
Breadboard (generic)
Breadboard (generic)
×1
Capacitor 100 µF
Capacitor 100 µF
×1
Capacitor 10 µF
Capacitor 10 µF
×1
Photo resistor
Photo resistor
×1
Jumper wires (generic)
Jumper wires (generic)
×1
Resistor 10k ohm
Resistor 10k ohm
×1

Story

Read more

Schematics

breadboard circuit

Code

Codigo

Arduino
int valorLido;
void setup() {
  Serial.begin(9600);
}
void loop() {

  valorLido = analogRead(A2);
  delay(20);
  Serial.println(valorLido);
}

Credits

caioreginato
1 project • 0 followers

Comments