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 Read More »

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 Read More »

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) Read More »

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 Read More »

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 Read More »

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 Read More »

Scroll to Top