Krzysztof Krawczyk
/
mech_instrum_lab_1_2_3_interrupt_experiment_b
Revision 0:b97b5cb32477, committed 2020-08-02
- Comitter:
- t00209054
- Date:
- Sun Aug 02 11:53:25 2020 +0000
- Commit message:
- v2
Changed in this revision
diff -r 000000000000 -r b97b5cb32477 C12832.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/C12832.lib Sun Aug 02 11:53:25 2020 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/askksa12543/code/C12832/#990d5eec2ef6
diff -r 000000000000 -r b97b5cb32477 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Sun Aug 02 11:53:25 2020 +0000 @@ -0,0 +1,30 @@ + +#include "mbed.h" +#include "C12832.h" + +InterruptIn joystickcenter(p14); +InterruptIn button(p9); +DigitalOut led(LED1); +DigitalOut flash(LED4); +C12832 lcd(p5, p7, p6, p8, p11); + +int i; + +void flip() { + led = !led; // toggles the led when the joystick button is pressed. + i = 1; +} +int main() { + joystickcenter.rise(&flip); // attach the function address to the rising edge + button.mode(PullUp); // With this, no external pullup resistor needed + button.rise(&flip); // attach the function address to the rising edge + while(1) { // wait around, interrupts will interrupt this! + flash = !flash; // turns LED4 on if off, off if on + wait(0.25); // the instruction to wait for a quarter-second + if (i == 1) { + lcd.locate(0,0); + lcd.printf("Button pressed"); + i = 0; + } + } +}
diff -r 000000000000 -r b97b5cb32477 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Sun Aug 02 11:53:25 2020 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file