Tutorials

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 »

Wheel Tutorial with Synthesizer

7-Key Slider/Wheel Tutorial with Synthesizer

This is a tutorial for using the 7-Key Slider/Wheel Breakout from Rachel’s Electronics. I’ll show you how to solder up the header pins for maximum usability. Rachel’s has the QT1106 datasheet on their site, and a great arduino library for this breakout. The kit from Rachel’s Electronics comes packed with cool stuff: QT1106 breakout with

7-Key Slider/Wheel Tutorial with Synthesizer Read More »

Many Arduino Projects

Many Arduino Projects

Let’s Make It Inaugural Episode – Let’s Make It – Episode 1 This is our very first episode of Let’s Make It. In this episode we introduce ourselves and talk a little about what is coming up. Hint: It is Arduino, Raspberry Pie, PIC Chips, Circuit Design and PC Board Manufacturing. Fun stuff! For the

Many Arduino Projects Read More »

Scroll to Top