video

Wall E Robot Arduino EasyVR3 Updated New Video With Voice Commands..Funny

Wall-E Robot Arduino EasyVR3 (Updated) New Video With Voice Commands..Funny!)

Whilst looking through videos on Youtube one day(Like you do) I came across a video with a Diy Arduino based Wall e, I thought wow! what a brilliant idea, I didn’t at that time even know what Arduino was so I began looking into it. I wanted to have a go at building one of […]

Wall-E Robot Arduino EasyVR3 (Updated) New Video With Voice Commands..Funny!) Continue Reading

Happy Androids with Arduino Video instructions

Happy Androids with Arduino Video instructions

Arduino + Android Normally smartphone events are tightly coupled to your phone device itself. When your cell phone is ringing, your phone speaker plays a ringtone. When you get a new text message, your phone displays it on its screen. Wouldn’t it be thrilling to make thoses phone events visible somewhere else, on your wearable,

Happy Androids with Arduino Video instructions Continue Reading

Rotary Encoder Video Tutorial with Arduino Code

Rotary Encoder Video Tutorial with Arduino Code

Rotary Encoder Tutorial with Arduino Code int pulses, A_SIG=0, B_SIG=1; void setup(){ attachInterrupt(0, A_RISE, RISING); attachInterrupt(1, B_RISE, RISING); Serial.begin(115200); }//setup void loop(){ } void A_RISE(){ detachInterrupt(0); A_SIG=1; if(B_SIG==0) pulses++;//moving forward if(B_SIG==1) pulses–;//moving reverse Serial.println(pulses); attachInterrupt(0, A_FALL, FALLING); } void A_FALL(){ detachInterrupt(0); A_SIG=0; For more detail: Rotary Encoder Video Tutorial with Arduino Code

Rotary Encoder Video Tutorial with Arduino Code Continue Reading

ESP32 Development Board

IoT and Touch-Based Home Automation with Video (Hindi & English)

We have seen various applications of IoT but what about adding the touch to it. In this project, we will add simple touch buttons to the ESP-32 Wi-Fi module. ESP-32 is a great module to design IoT applications and adding touch to it will make it further smart. Talking about ESP-32, it is a micro-controller designed

IoT and Touch-Based Home Automation with Video (Hindi & English) Continue Reading

Digital video for Arduinos over 2 wire serial Mesa Bus

Mesa-Video : 800×600 Digital video for Arduinos over 2-wire serial Mesa-Bus

This post describes Mesa-Video, a low cost, low power, small size and fully Open Source Hardware and Software solution for providing 800×600 digital video for Arduino ( and other ) microcontrollers.  Mesa-Video makes it quick and easy to display text and 24bit color graphics from any MCU using a single UART serial port pin. Applications for

Mesa-Video : 800×600 Digital video for Arduinos over 2-wire serial Mesa-Bus Continue Reading

ARM redesigns Cortex M processor for video

ARM redesigns Cortex-M processor for video

ARM has introduced its highest performance Cortex-M series processor core. The Cortex-M7 retains the same instruction set of the other processors in the Cortex M series, but has been given a six-stage super scalar pipeline architecture which dramatically increases its performance over the previous Cortex-M4. Ian Johnson, product manager at ARM told Electronics Weekly, the

ARM redesigns Cortex-M processor for video Continue Reading

Parking your car with an Arduino

UltraSonic Arduino Video instructions How To – Parking your car with an Arduino

How To – Parking your car with an Arduino Code: // Back up Helper, by Kevin Darrah v4 #include <SoftwareSerial.h>// to read the data fron the range finder on any digital pin SoftwareSerial sonar(5, 6); // RX, TX //we’re only using the RX pin (5), so who cares about the TX pin int huns, tens,

UltraSonic Arduino Video instructions How To – Parking your car with an Arduino Continue Reading

Scroll to Top