Wiljan Arias / WhexReefMonitor

Dependencies:   mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed

Fork of HTTPServerHelloWorld by Donatien Garnier

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ActuatorsController.h Source File

ActuatorsController.h

00001 #ifndef ACTUATORS_CONTROLLER_H
00002 #define ACTUATORS_CONTROLLER_H
00003 
00004 #include "mbed.h"
00005 #include "MCP23S17.h"
00006 
00007 class ActuatorsController {
00008     private:
00009         MCP23S17* ioPort;
00010     public:
00011         ActuatorsController(SPI* spiHandler);
00012 
00013 };
00014 
00015 #endif