Simple "hello world" style program for X-NUCLEO-IKS01A1 MEMS Inertial

Dependencies:   BLE_API X_NUCLEO_IDB0XA1 X_NUCLEO_IKS01A1 mbed

Fork of HelloWorld_IKS01A1 by ST

Committer:
n0tform3
Date:
Sun Nov 15 09:00:40 2015 +0000
Revision:
8:1c6281289d67
test with led

Who changed what in which revision?

UserRevisionLine numberNew contents of line
n0tform3 8:1c6281289d67 1 #ifndef LED_H_
n0tform3 8:1c6281289d67 2 #define LED_H_
n0tform3 8:1c6281289d67 3
n0tform3 8:1c6281289d67 4 typedef enum{
n0tform3 8:1c6281289d67 5 NOP,
n0tform3 8:1c6281289d67 6 DO,
n0tform3 8:1c6281289d67 7 RE,
n0tform3 8:1c6281289d67 8 MI,
n0tform3 8:1c6281289d67 9 FA,
n0tform3 8:1c6281289d67 10 SOL,
n0tform3 8:1c6281289d67 11 LA,
n0tform3 8:1c6281289d67 12 SI,
n0tform3 8:1c6281289d67 13 DO1,
n0tform3 8:1c6281289d67 14 }Nota;
n0tform3 8:1c6281289d67 15
n0tform3 8:1c6281289d67 16 void Blue_Red_Setup(void);
n0tform3 8:1c6281289d67 17 void Green_Setup(void);
n0tform3 8:1c6281289d67 18
n0tform3 8:1c6281289d67 19 #endif
n0tform3 8:1c6281289d67 20