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 DRV88255 TextLCD Ping mbed-rtos
Diff: AlarmController.h
- Revision:
- 27:4f73f754fdc9
- Parent:
- 20:521f795ea9d7
- Child:
- 38:930469a33001
--- a/AlarmController.h Mon Jun 13 13:57:38 2016 +0000 +++ b/AlarmController.h Tue Jun 14 09:23:29 2016 +0000 @@ -17,6 +17,7 @@ this->error = false; this->tempiscrit = false; this->saltiscrit = false; + this->overflowiscrit = false; } virtual void update(); @@ -30,6 +31,7 @@ void buzzOnce(); void raiseAlarmTemp(bool); void raiseAlarmSalt(bool); + void raiseAlarmOverFlow(bool); private: @@ -43,6 +45,9 @@ void activate_buzzer(); bool tempiscrit; bool saltiscrit; + bool overflowiscrit; + + };