You can use Analog Pins on your Arduino Board to read from an IR sensor if you need a numeric reading.
Functional Parts in the Project:
- Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3
- IR Sensor – https://amzn.to/2IDw7SE
#define IR A0
int reading;
void setup() {
Serial.begin(9600);
}
void loop() {
reading = analogRead(IR);
Serial.println(reading);
delay(500);
}
Hi Eli, do you plan on making live streams on this website/ failednormal.com?
nope… I’m focusing on prerecorded content… trying to do 4-5 vids a day total…