Create your own Arduino library

On previous pages we created a DIY LED board and posted some examples. Now we are going to create a very basic library. http://www.getmicros.net/diy-led-board.php http://www.getmicros.net/led-examples-using-diy-led-board.php You need at least two…

Read more

BMP805 Sensor example

A new sensor breakout I got recently the BMP05 Barometric, pressure and Temperature sensor.   #include <Wire.h> #include <Adafruit_BMP085.h> Adafruit_BMP085 bmp; void setup() { Serial.begin(9600); if (!bmp.begin()) { Serial.println(“Could not…

Read more

Multi color LED Netduino code example

Similar to Arduino example, same pinout. This will cycle through the red, green and blue colors.   using System; using System.Threading; using Microsoft.SPOT; using Microsoft.SPOT.Hardware; using SecretLabs.NETMF.Hardware; using SecretLabs.NETMF.Hardware.Netduino; namespace…

Read more