Recently I purchased a bunch of Arduino Nano clones that were labelled as DCCduino.Lets look at the board I decided to give one of these try, plugged it in and the device was unrecognised in Windows, I use Windows 7 …
arduino
-
-
In this example we will connect a 7 segment display to an Arduino Schematic Code [c] const int A = 4; const int B = 5; const int C = 6; const int D = 7; const int E = …
-
A keypad is a nice simple method of accepting user input into your project. These come in a number of styles and generally there are 2 types a 3×4 keypad and a 4×4 keypad. The numbers stand for the rows …
-
This code snippet will get the button value and display the value on the 7 Segment LED and the LEDs Code [c] #include <TM1638.h> // define a module on data pin 8, clock pin 9 and strobe pin 10 TM1638 …
-
Sometimes in your projects you simply do not have enough I/O lines available, take for example a lot of the multiple LED examples, these use 8 outputs to control 8 LEDs via your Arduino UNO, that can restrict the amount of …
-
Taking our hello world I2C OLED example a bit further, this is our next creation. We connect a DS18B20 temperature sensor and display the temperature on the display Coding You need to download and install various libraries and copy them …
-
In this example we connect an infra red receiver to our Arduino and an RGB led. We will use various button combinations on the remote control to switch on an LED and we will use a button to switch them …
-
This shield got my attention as it looked like a nice beginners learning type shield with which you could get up and running with an Arduino Here is a picture of the board, a few code examples are available later …