Follow this tutorial to get your arduino to blink.
You may need to install these drivers depending on the board you are using. Look at the Chip for one of the following markings on the long rectangular black chip:
sudo apt install git
git clone https://github.com/gschorcht/spi-ch341-usb.git
cd spi-ch341-usb
sudo make
sudo make install
Using your breadboard, an LED and a resistor, get one led to light up.
Next get your LED hooked up to a an Arduino and control the LED using code following this tutorial.
Follow and complete tutorials 3 and 6 from here.
Before creating any circuit, design it in the Fritzing App first and show your instructor. A copy should be saved in your Google Drive with an appropriate title related to the tutorial you are following.
Next Steps:
Work with a partner on this task. One arduino should be set up to cycle through Red, Green, Blue LED lights as we did in Tutorial 3. The second arduino should be wired up to the breadboard to digitally read what color is being displayed and output that colour in the console.
Seven segment displays offer an excellent introduction to electronics and interfacing. We will start by mapping out the pins on a display, then once we understand how to work the display, we can programmatically control it by interfacing with a Raspberry Pi's GPIO pins and writing a python program to display various things. We will start with a single digit and work our way up to multi-digit displays.
The purpose of this lesson is to interconnect an arduino, motors, sensors and control it all using software. Work your way through these steps to better understand the project.
Step 1: Install Fritzing and Arduino on either your Raspberry Pi or Windows PC.
Step 2: Reproduce this diagram in Fritzing. You will need to import the TCRT5000 Arduino module for your schematic.
Step 3: Build CARL according to your schematic
Step 4: Code CARL