Setting Arduino pins high by default
To set certain Arduino pins to HIGH by default when your program starts, you can configure the pins as outputs in the setup() function and set them to HIGH using…
To set certain Arduino pins to HIGH by default when your program starts, you can configure the pins as outputs in the setup() function and set them to HIGH using…
In this example we look at an VEML6070 UV sensor and connect it to an Arduino UNO, the code example will not use any external libraries VEML6070 is an advanced…
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…
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…
The BMP180 is a new digital barometric pressure sensor of Bosch Sensortec, with a very high performance, which enables applications in advanced mobile devices, such as smart phones, tablet PCs…
The SHT21 has a capacitive sensor element to measure humidity, while the temperature is measured by a band gap sensor. Both sensors are seamlessly coupled to a 14-bit ADC, which then…
This time we will create a more practical example of connecting an Arduino to a PC and then writing an app to read data via the com port. In this…
In this example we will use analog pin 0 to obtain a value and send it via the com port (USB) , we will read this with a C# app…