Charles Young's development fork. Going forward I only want to push mature code to main repository.

Dependencies:   mbed

Fork of GEO_COUNTER_L432KC by Geo Electronics "Geo Counter"

Revision:
33:35e3ab4d5ba7
Parent:
32:12f725e0235e
Child:
34:10550b327e3d
--- a/main.cpp	Wed Sep 05 13:15:19 2018 -0700
+++ b/main.cpp	Wed Sep 05 14:38:42 2018 -0700
@@ -150,6 +150,8 @@
 
 void UpdateInput()   
 {
+   DigitsDisplay.Display_2D_write(Count1); // Just to test 2D
+
    // This must be called periodically to monitor switch input
    direction = ModeSwitch.UpdateInput();
    if (direction > 0)
@@ -186,7 +188,7 @@
 
 void Count1_up(void)
 {                       
-   Beep();
+   //Beep();
    Count1++;                        
    return; 
 }
@@ -196,7 +198,7 @@
 
 void Count2_up(void)
 {                      
-   Beep();
+   //Beep();
    Count2++;                        
    return; 
 }
@@ -208,7 +210,7 @@
 void Beep(void)       
 {                       
    BUZZ = 1;         // turn-on the buzzer
-   wait_us(100);        // wait
+   wait_us(100);     // wait
    BUZZ = 0;         // turn-off the buzzer   
    return; 
 }