reef monitor
Dependencies: mbed-rtos EthernetInterface FatFileSystemCpp MCP23S17 SDFileSystem mbed
Fork of HTTPServerHelloWorld by
Services/Actuators/ActuatorsController.h@12:72e0c404017a, 2015-01-03 (annotated)
- Committer:
- wyunreal
- Date:
- Sat Jan 03 17:50:52 2015 +0000
- Revision:
- 12:72e0c404017a
- Parent:
- 10:372c882b5533
draft of file request handler;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wyunreal | 10:372c882b5533 | 1 | #ifndef ACTUATORS_CONTROLLER_H |
wyunreal | 10:372c882b5533 | 2 | #define ACTUATORS_CONTROLLER_H |
wyunreal | 10:372c882b5533 | 3 | |
wyunreal | 10:372c882b5533 | 4 | #include "mbed.h" |
wyunreal | 10:372c882b5533 | 5 | #include "MCP23S17.h" |
wyunreal | 10:372c882b5533 | 6 | |
wyunreal | 10:372c882b5533 | 7 | class ActuatorsController { |
wyunreal | 10:372c882b5533 | 8 | private: |
wyunreal | 10:372c882b5533 | 9 | MCP23S17* ioPort; |
wyunreal | 10:372c882b5533 | 10 | public: |
wyunreal | 10:372c882b5533 | 11 | ActuatorsController(SPI* spiHandler); |
wyunreal | 10:372c882b5533 | 12 | |
wyunreal | 10:372c882b5533 | 13 | }; |
wyunreal | 10:372c882b5533 | 14 | |
wyunreal | 10:372c882b5533 | 15 | #endif |