Salinity and temperature sensors are implemented in classes.

Dependencies:   mbed

Procedure.h

Committer:
mariosimaremare
Date:
2016-06-28
Revision:
15:e112bab9aa2f
Parent:
12:7a48b90b493e

File content as of revision 15:e112bab9aa2f:

/*
* G3: WATERPLAY
*/

#ifndef PROCEDURE_H
#define PROCEDURE_H

#include "Printer.h"
#include "mbed.h"

class Procedure
{
public:
    Procedure(
        Printer &printer,
        DigitalIn &button
    );
    int proceed();

private:
    Printer &_printer;
    DigitalIn _button;
};

#endif