• This example was toggling an RGB LED connected to digital output pins 5, 6 and 7. The particular Maple variant was the one found at Olimexino   Code void setup()…

  • This example uses the NET Micro Framework Toolbox available from http://netmftoolbox.codeplex.com/ We simply flash a RGB LED . Code using System; using System.Threading; using Microsoft.SPOT; using Microsoft.SPOT.Hardware; using SecretLabs.NETMF.Hardware; using…

  • In this example we connect an SD card to our Arduino, we will log analog readings to a file on the SD card. Here is the layout   Code #include…

  • This was an RGB Led breakout example Red connected to Pin 23 Green connected to pin 22 Blue connected to pin 21 The code example simply cycles through the 3…

  • This was a simple example to show sending information using the serial monitor, in our other examples we have generally used the serial monitor for debug, outputting messages. This example…

  • This particular little project involved connected a DH11 breakout and an I2C LCD display to an Arduino and then displaying the humidity and temperature on the display. The code is…