This is a very interesting project from my Computer Science class that I thought I would share here. The premise is to create a tetrahedral kite that can collect different data such as temperature and altitude during it’s flight, and record it on to an SD card. Our class used a tutorial on NASA’s website…
Tag: Arduino Uno
Analog Input Blink
I used an example from Arduino.cc to practice receiving analog signals through the analog inputs. In this example, the wait time between the blinks of the embedded LED are going to be sent to the Arduino UNO board from the potentiometer. The potentiometer sends voltage to the analog input, which in turn converts it to…
Arduino Traffic Light
In this project I created a traffic light prototype with an Arduino UNO. The LEDs would have to light up at the sequence of a real traffic light and work in a constant loop. Materials used in the project: Arduino UNO breadboard 5mm LED 220 ohm resistors wires I used the Arduino programming software to…
Programmable CarBot
Contents: idea layout execution programming gallery Idea The next step in the journey of CarBot was to make it programmable using Arduino software. With this feature it will be possible to write code to move the robot around in every way, thus providing more possibilities for further projects. Layout Car-Bot’s Arduino UNO board is powered…
Arduino Blink
As one types in their first line of code with: print(“Hello World!”), when starting to work with Arduino the first program will be blink, which involves one of its many components – LED.
CarBot Arduino
Working with Arduino can come very handy when programming robots. In this part of the project I applied some of my knowledge in Arduino programming to the CarBot project, making it able to move around using Arduino code. As it can be seen above, the program makes the robot go forward for 1000 milliseconds (or…