A collection of examples organized from basics to advanced.

Dependencies:   mbed SDFileSystem

Mbed online compiler has no facility to easily manage a lot of programs or organized them in to related folders. This makes creating an examples and sample pack difficult.

This repository contains a single main.cpp file (which does very little), and a BuildOptions.h file. Simply uncomment the example you would like to compile from the build options. Each example is wrapped in a compiler directive.

If the directive does not include a description comment, it likely does not exist yet. If you would like to contribute to the Examples project, please contact me or fork and issue a pull request.

Committer:
epremeaux
Date:
Tue Jul 09 02:23:18 2019 +0000
Revision:
2:17a5c34b3a79
Parent:
Digital_In.cpp@0:b471f7764d46
Added SD card examples. Had to roll back the MBED library to maintain SDFileSystem compatability

Who changed what in which revision?

UserRevisionLine numberNew contents of line
epremeaux 0:b471f7764d46 1 #include "mbed.h"
epremeaux 0:b471f7764d46 2
epremeaux 0:b471f7764d46 3 DigitalOut myled(LED1);
epremeaux 0:b471f7764d46 4 DigitalIn boton(D2);
epremeaux 0:b471f7764d46 5
epremeaux 0:b471f7764d46 6 int main() {
epremeaux 0:b471f7764d46 7 while(1) {
epremeaux 0:b471f7764d46 8 if (boton == 0){
epremeaux 0:b471f7764d46 9 myled = 1;
epremeaux 0:b471f7764d46 10 }else{
epremeaux 0:b471f7764d46 11 myled = 0;
epremeaux 0:b471f7764d46 12 }
epremeaux 0:b471f7764d46 13 }
epremeaux 0:b471f7764d46 14 }