Use nrf51-dk as a FTDI 232

Dependencies:   mbed

Fork of serial-test by Kentarou Shimatani

main.cpp

Committer:
peccu
Date:
2011-06-17
Revision:
0:b1ba78fdcc98
Child:
1:58022b0070b7

File content as of revision 0:b1ba78fdcc98:

#include "mbed.h"

Serial pc(USBTX, USBRX); // tx, rx
AnalogIn myinput(p20);
PwmOut led(LED1);

float brightness = 0.0;

int main() {
    pc.printf("Press 'u' to turn LED1 brightness up, 'd' to turn it down\r\n");

    while(1) {
     pc.printf("Hello World! : %f\r\n",(float)myinput);
        char c = pc.getc();
        if((c == 'u') && (brightness < 0.5)) {
            brightness += 0.01;
            led = brightness;
        }
        if((c == 'd') && (brightness > 0.0)) {
            brightness -= 0.01;
            led = brightness;
        } 

    }
}