video

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

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

Baby Eats Alternative Video Game Controller

Baby Eats, Alternative Video Game Controller

This Instructables will teach you how to make the alternative controller to play my short game, Grogu Eats, on itch.io! This Instructables will be very basic up until the soldering. If you want to make this project, I recommend looking at soldering tutorials when you get to that step. Supplies Baby Yoda plush. I used this one,

Baby Eats, Alternative Video Game Controller 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

ESP32 Development Board 1

Internet of Things (IoT) LED Lamp with Video (Hindi & English)

In this project, we handle the output pin of ESP32 for switching and dimming a DC LED lamp using a local Web server.  For a local Web server, we do not need an Internet connection; we can handle everything over Wi-Fi. To make this work, we use additional circuitry, because LED being of high power cannot be

Internet of Things (IoT) LED Lamp 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