This program exercises many of the peripherials including serial communication (prints bargraph on screen), as well as pushbutton (SW1 and SW2) and led red/blue usage. Based on Freescale program: frdm_helloworld, see http://developer.mbed.org/teams/Freescale/code/frdm_helloworld/?platform=FRDM-K64F REVISIONS: PC.BAUD = 115200-FAST, ADDED MSG STRINGS
main.cpp
- Committer:
- strain11
- Date:
- 2015-03-22
- Revision:
- 1:5b588cbaccae
- Parent:
- 0:87236080673f
- Child:
- 2:4601839c95d1
File content as of revision 1:5b588cbaccae:
#include "mbed.h" DigitalOut led_red(LED_RED); DigitalOut led_3(LED_BLUE); DigitalOut led_2(LED_GREEN); InterruptIn sw2(SW2); InterruptIn sw1(PTA4); Serial pc(USBTX, USBRX); //============================================================== //============================================================== char contador ; int temp_led; //int i; //-------------------------------------------------------------- //============================================================== void sw1_release(void) { pc.printf("\n"); pc.printf("-------------------------------------------\n"); pc.printf("-----------SW1 PRESSED: BARGRAPH-----------\n"); pc.printf("-------------------------------------------\n"); pc.printf("----------------PERCENTAGE-----------------\n"); pc.printf("0--------25--------50--------75--------100\n"); for(int i=0 ; i<=40 ; i++) { pc.printf("|"); led_2 = !led_2; wait(0.050); } pc.printf("\n"); pc.printf("-------------------------------------------\n"); } //------------------------------------------------------------- //============================================================== void sw2_release(void) { wait(.011); contador = contador + 1; led_red = !led_red; temp_led = led_red; pc.printf("BUTTON SW2 PRESSED "); //----------------------------------------------------------- if (contador < 2){ pc.printf("%d",contador); pc.printf(" TIME"); } else { pc.printf("%d",contador); pc.printf(" TIMES"); } //----------------------------------------------------------- pc.printf("\n"); //----------------------------------------------------- if (temp_led == 1) { pc.printf("LED RED OFF"); pc.printf("\n"); } else { pc.printf("RED LED ON"); pc.printf("\n"); } //------------------------------------------------------------------ pc.printf("-------------------------------------------\n"); pc.printf(" CHART HOW MANY TIMES WAS PRESSED SW2 \n"); pc.printf("----------------PERCENTAGE-----------------\n"); pc.printf("0--------25--------50--------75--------100\n"); for(int i=1 ; i<=contador ; i++) { pc.printf("|"); wait(0.050); } pc.printf("\n"); pc.printf("-------------------------------------------\n"); pc.printf("===========================================\n"); //------------------------------------------------------------------ led_3 = 0; pc.printf("LED BLUE ON [TWO SECONDS]"); pc.printf("\n"); pc.printf("W"); wait(2.0/40); pc.printf("A"); wait(2.0/40); pc.printf("I"); wait(2.0/40); pc.printf("T"); wait(2.0/40); pc.printf(" "); wait(2.0/40); pc.printf("2"); wait(2.0/40); pc.printf(" "); wait(2.0/4); pc.printf("S"); wait(2.0/43); pc.printf("E"); wait(2.0/43); pc.printf("C"); wait(2.0/43); pc.printf("O"); wait(2.0/43); pc.printf("N"); wait(2.0/43); pc.printf("D"); wait(2.0/43); pc.printf("S"); wait(2.0/43); for(char i=0 ; i<=25 ; i++) { pc.printf("."); wait(2.0/40); } pc.printf("\n"); pc.printf("===========================================\n"); led_3 = 1; if (contador > 40){ contador = 0; pc.printf("*******************************************\n"); pc.printf(" COUNTER RESET, START NEW CYCLE \n"); pc.printf("*******************************************\n"); } } //----------------------------------------------------------------------- //------------------------------------------------------------------------ int main() { pc.baud(115200); led_3 = 1; wait(2.0); pc.printf("-------------------------------------------\n"); pc.printf("** SERIAL ENABLED! **\n"); pc.printf("-------------------------------------------\n"); pc.printf("* TEST PROGRAM BOARD FRDM-K64F *\n"); pc.printf("-------------------------------------------\n"); pc.printf("* 120MHz, 256KB RAM, 1MB FLASH *\n"); pc.printf("-------------------------------------------\n"); pc.printf("* PRESS SW2: CONTROL RED LED *\n"); pc.printf("-------------------------------------------\n"); pc.printf("* PRESS SW1: SHOW GRAPHIC BARS *\n"); pc.printf("-------------------------------------------\n"); pc.printf("* MBED COMPILER [21/03/2015] *\n"); pc.printf("-------------------------------------------\n"); pc.printf("===========================================\n"); pc.printf("\n"); pc.printf("\n"); sw2.rise(&sw2_release); sw1.rise(&sw1_release); while (true) { } }