about 2 months ago - 34 comments
This is my senior years final project, i build the mini tank with M4-Carbine Airsoft gun mounted. It can wireless control RGB color tracking. let see robot specification source code below. – Manual control with joy stick and GUI moving forward, backward, turn left, turn right, spin left, spin right with full speed control, fire
about 3 months ago - 1 comment
DIY remote controlled 2 wheels self balancing robot by using arduino as microcontroller with 300 degree/sec gyro and 1.7 g accelerometer combine with complimentary filter, PID algorithm. more about this project including souce code at : letsmakerobots
about 3 months ago - No comments
DIY wireless controll solar tank via iPhone device through TouchOSC application and processing library to convert the control signal to serial communication over xbee devices to Arduino board for controlling solar powered tank. Source
about 3 months ago - No comments
The cheapest and simplest way of real random number generator, using arduino controlled the servo to flip over the sand timer and optical sensors to measure the sand particle which generating the random number. via: elektronika original source at: USB Hourglass
about 3 months ago - 1 comment
Two engineering student build their coil gun turret with wireless control using 8051 and Arduino. It’ can controlled their gun via Iphone with OSC protocol. via hackedgadgets
about 3 months ago - No comments
Ping pong game on 8×8 led matrix has been controlled by Arduino micro-controller each side can control the ball by potentiometer. visit site source for more info including source code.
about 3 months ago - No comments
The Arduino Controlled 2 digit of 7 Segment 0-99 counting with speed variable from 10K potentiometer. Wiring on the Breadboard Schematic diagram Download the project Fritzing file. Source Code int i,j,segment[10]={0x3f,0×06,0x5b,0x4f,0×66,0x6d,0x7d,0×27,0x7f,0×67}; void setup() { for(i=0;i<14;i++){ pinMode(i, OUTPUT); } } void loop() { for(i=0;i<10;i++){ for(j=0;j<10;j++){ int analogValue = constrain(analogRead(0),50,750); digitalWrite(0, ((segment[i]&0×01))?HIGH:LOW); digitalWrite(1, ((segment[i]&0×02))?HIGH:LOW); digitalWrite(2, ((segment[i]&0×04))?HIGH:LOW); digitalWrite(3,
about 3 months ago - No comments
An example for Arduino timer counting up and counting down display output on LCD screen, Blink when time up. this an example for using millis(); time function. Wiring Diagram Schematic Source Code #include <LiquidCrystal.h> int aa,bb; boolean b=true; LiquidCrystal lcd(6, 7, 5, 4, 3, 2); void setup() { lcd.begin(16, 2); lcd.print("TIMER UP-DOWN!!!"); } void loop()
about 4 months ago - No comments
Simple way to plot the realtime graph on your monitor from arduino A/D channel using processing. This example we’re using potentiometer to changing voltage level of A/D channel on Arduino board. Wiring on Arduino board with 10K potentiometer Arduino Source Code int AD0 = 0; void setup() { Serial.begin(9600); pinMode(INPUT,AD0); } void loop() { int
about 4 months ago - No comments
Example how to adjust LEDs Blink speed from Serial Command, all wiring and schematic were same as this post. By Using Serial.available() function to checking the incoming Serial data in buffer, if it more than 1 then checking if it “Q” or “A” Letter, if it got “Q” increase the delay time or if it