News

Description: Using an Arduino or a micro controller we can generate cool looking patterns with an led strip with addressable LEDs. In this case I'm using an Arduino uno (clone board) and a strip of ...
This product is courtesy of It was super easy to make this mobile tracked platform and radio-controlled useful for building ...
Arduino created a Renesas RA4M1 microcontroller board in its Nano form-factor. Called Nano R4, it follows the Uno R4, the first Arduino to use the RA4M1. Episode 13 of our podcast CHIIPs is out now, ...
int i = 0; const int LED = 11; //define the pin we use for LED void setup() { pinMode(LED, OUTPUT); //set pin 11 as OUTPUT } void loop() { for (int i = 0; i 0; i--){ //descrease i with 1 ...
[Steve] from Hackshed did just this: he integrated an Arduino based webserver into a new network controllable RGB lamp. What makes this lamp unique is that the RGB LED bar comes from an old Epson ...
This is a simple 0 to 9 counter circuit constructed using Arduino! Here, a common cathode 7-segment LED display is connected to Arduino for displaying the digits. The code (Arduino sketch) allows push ...