Sync In

Dependencies:   AverageMCP3008 VoltageMonitor mbed-rtos mbed mcp3008

Fork of KIK01_Proto06 by Ryo Od

Files at this revision

API Documentation at this revision

Comitter:
ryood
Date:
Mon Dec 11 12:19:26 2017 +0000
Parent:
33:eac518ea0f34
Commit message:
Clean Up

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Mon Dec 11 05:53:59 2017 +0000
+++ b/main.cpp	Mon Dec 11 12:19:26 2017 +0000
@@ -61,8 +61,8 @@
 // Power Monitor
 AnalogIn PowerMonitorIn(PA_0);
 DigitalOut PowerMonitorLed(PA_15);
-//VoltageMonitor PWMon(&PowerMonitorIn, PM_VDD, PM_LoThreshold, PM_HiThreshold, &PowerMonitorLed);
-VoltageMonitor PWMon(&PowerMonitorIn, PM_VDD, PM_LoThreshold, PM_HiThreshold, NULL);
+VoltageMonitor PWMon(&PowerMonitorIn, PM_VDD, PM_LoThreshold, PM_HiThreshold, &PowerMonitorLed);
+//VoltageMonitor PWMon(&PowerMonitorIn, PM_VDD, PM_LoThreshold, PM_HiThreshold, NULL);
 
 // Sync
 DigitalOut SyncOut(PC_10);
@@ -206,7 +206,7 @@
 void syncFunction()
 {
     ticks = 0;
-    PowerMonitorLed = !PowerMonitorLed;
+    //PowerMonitorLed = !PowerMonitorLed;
 }
 
 int main()