Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Fork of Lab_6_WaG by
main.cpp
- Committer:
- spm71
- Date:
- 2018-02-27
- Revision:
- 14:be27f6e21a8a
- Parent:
- 13:8936b2f64aa2
- Child:
- 16:dfa9eb1a808d
File content as of revision 14:be27f6e21a8a:
/****************************************************************************** * EECS 397 * * Assignment Name: Lab 4: display_test2 * * Authors: Sam Morrison and Phong Nguyen * * Purpose: Configures the board for 5-digit display * * Last Modified: 02/19/2018 * ******************************************************************************/ #include "mbed.h" #include "io_pins.h" #include "display.h" #include <stdlib.h> #include <stdio.h> #include <string.h> int data_length = 16; int frequency = 1000000; DigitalOut SS(CHIP_SELECT); SPI spi(MOSI, MISO, SCLK); Serial pc(USBTX, USBRX); int main(void) { initial_setup(SS, data_length, frequency); char bcd[4]; int input; while(1) { //clears bcd array for (int i = 0; i < 4; i++) bcd[i] = 0; input = 0; pc.printf("Select a digit between 0 and 9999:\n"); pc.scanf("%d", &input); while (input < 0 or input > 9999) { //ask for input until 0-9999 is selected pc.printf("You entered a number out of range\n"); pc.printf("Select a digit between 0 and 9999:\n"); input = 0; pc.scanf("%d", &input); } printf("you entered: %d\n", input); bin2bcd_array(input, bcd); send_command_to_display(bcd); } }