Test program for mbed app shield pots

Dependencies:   C12832 mbed

Fork of mbed-app-shield by Chris Styles

main.cpp

Committer:
chris
Date:
2014-08-01
Revision:
4:f0eb984c583d
Parent:
3:100dbea70564

File content as of revision 4:f0eb984c583d:

#include "mbed.h"
#include "C12832.h"

C12832 lcd(D11, D13, D12, D7, D10);

AnalogIn pot1 (A0);
AnalogIn pot2 (A1);

int main()
{
    while(1) {
        lcd.cls();
        lcd.locate(0,3);
        lcd.printf("Pot 1 = %.2f", (float)pot1);
        lcd.locate(0,14);
        lcd.printf("Pot 2 = %.2f", (float)pot2);
        wait(0.1);
    }
}