Program for the water play project for the course Software Testing Practical 2016 given at the VU University

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

AlarmController.cpp

Committer:
sbouber1
Date:
2016-06-10
Revision:
11:1a0a8fd74bc0
Parent:
10:fd4670ec0806
Child:
20:521f795ea9d7

File content as of revision 11:1a0a8fd74bc0:

#include "AlarmController.h"

void AlarmController::update() {
    
    
}

std::string AlarmController::get_name() {
    return "AlarmController";    
}

bool AlarmController::is_error() {
    return this->error;    
}

char *AlarmController::get_error_message() {
    return this->error_msg;
}

void AlarmController::activate_buzzer() {
    printf("Should activate buzzer now\r\n");    
}