reef monitor

Dependencies:   mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed

Fork of HTTPServerHelloWorld by Donatien Garnier

Services/Actuators/ActuatorsController.h

Committer:
wyunreal
Date:
2014-03-02
Revision:
10:372c882b5533

File content as of revision 10:372c882b5533:

#ifndef ACTUATORS_CONTROLLER_H
#define ACTUATORS_CONTROLLER_H

#include "mbed.h"
#include "MCP23S17.h"

class ActuatorsController {
    private:
        MCP23S17* ioPort;
    public:
        ActuatorsController(SPI* spiHandler);

};

#endif