Early commits of my project

Dependencies:   mbed Gamepad N5110

main.cpp

Committer:
el17arm
Date:
2019-03-11
Revision:
1:c80162894831
Parent:
0:9e5f9e1c8ef9
Child:
2:ba653520a140

File content as of revision 1:c80162894831:

#include "main.h"
#include "N5110.h"
#include "Joystick.h"

N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11); 
Joystick joystick(PTB10,PTB11,PTC16);
AnalogIn pot0(PTB2);
DigitalIn joy_button(PTC16);
BusOut front_leds(PTA1,PTA2,PTC2,PTC3,PTC4, PTD3);

int main()
{
    init();
    
    
    
    while (1) {
        
        contrast();
    }
    
}

void init()
{
    lcd.init();
    lcd.normalMode();      // normal colour mode
    lcd.setBrightness(0.5); // put LED backlight on 50%
    lcd.refresh();
    
    joystick.init();
    front_leds = 0b111111;
}

void contrast()
{   
    lcd.refresh();
    float con = pot0.read();
    lcd.setContrast(con);
    
}