IO is an event based input manager which permit to select which composents are manged on your system

Dependencies:   C12832 FXOS8700Q LM75B MMA7660

Committer:
co838_app56
Date:
Thu Feb 25 15:12:32 2016 +0000
Revision:
4:50e2aefe516b
Parent:
0:2ac59c564ab0
Fixing precision issue;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
co838_app56 0:2ac59c564ab0 1 #pragma once
co838_app56 0:2ac59c564ab0 2
co838_app56 0:2ac59c564ab0 3 #include "mbed.h"
co838_app56 0:2ac59c564ab0 4
co838_app56 0:2ac59c564ab0 5 struct RGBLed
co838_app56 0:2ac59c564ab0 6 {
co838_app56 0:2ac59c564ab0 7 DigitalOut r;
co838_app56 0:2ac59c564ab0 8 DigitalOut g;
co838_app56 0:2ac59c564ab0 9 DigitalOut b;
co838_app56 0:2ac59c564ab0 10
co838_app56 0:2ac59c564ab0 11 RGBLed(PinName, PinName, PinName);
co838_app56 0:2ac59c564ab0 12 };