Programming an Attiny44 using an Arduino
In this example we will program an Attiny44 using an Arduino The first step is to take a look at the pinouts and features available if you decide to use…
In this example we will program an Attiny44 using an Arduino The first step is to take a look at the pinouts and features available if you decide to use…
In this part we will now try and program an Attiny85 microcontroller using an Arduino, the process is similar to our Attiny2313 example. Basically slightly different connections and change the…
The wemos d1 is an Arduino Uno-like wifi board based on ESP-8266EX. You can use the Arduino IDE, NodeMCU and there are other development environments available There is a USB…
This is the second part of setting up an Arduino to program an Attiny microcontroller, in the previous parts we added support for the variety of microcontrollers. For reference purposes…
Since Arduino 1.6.4 it has been easy to add support for other boards such as the Intel Galileo, in this case I have a lot of Attiny microcontrollers that I…
This is a list of interrupts, in priority order, for the Atmega328: 1 Reset 2 External Interrupt Request 0 (pin D2) (INT0_vect) 3 External Interrupt Request 1 (pin D3) (INT1_vect) 4…
I like connecting sensors to my Arduino boards, recently I noticed the following module which combined the following 3 sensors in one easy to use module, all of the sensors are…
A common task in the world of datalogging is to store your data on some sort of storage card, the most common kinds being SD and micro SD cards. There…
Just a couple of rainbow shield examples that will randomly light up the various LEDs with different colours [codesyntax lang=”cpp”] #include <Rainbowduino.h> void setup() { Rb.init(); } unsigned char…
A while back I bought an Intel Galileo 2 and recently noticed that in the Arduino IDE 1.6.5 via the boards manager that the board was supported. Rather than go…