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: ID12RFID ReportDB SalesforceCaseGenerator SalesforceInterface
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
Revision 14:f4ab5c7abc50, committed 2014-09-10
- Comitter:
- ansond
- Date:
- Wed Sep 10 18:32:36 2014 +0000
- Parent:
- 13:a3715360e454
- Child:
- 15:8a751090bddd
- Commit message:
- updated coloring
Changed in this revision
| StatusReporter.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/StatusReporter.cpp Tue Sep 09 20:45:00 2014 +0000
+++ b/StatusReporter.cpp Wed Sep 10 18:32:36 2014 +0000
@@ -42,12 +42,15 @@
sprintf(subject,"%s case update",name);
// create and dispatch a case
+ this->m_logger->turnLEDPurple();
bool success = this->m_case_generator.createCase(subject,this->m_db.lookupWidgetDescription(rfid));
if (success == true) {
this->m_logger->log("Case Generated!\r\nScanning...");
+ this->m_logger->turnLEDGreen();
}
else {
this->m_logger->log("Case Generation FAILED\r\nScanning...");
+ this->m_logger->turnLEDYellow();
}
}
else {