A classy affair
Dependencies: mbed mbed-rtos ShiftReg TextLCD
Feedback/Feedback.hpp@4:1ef122d47bf3, 2019-04-11 (annotated)
- Committer:
- thomasmorris
- Date:
- Thu Apr 11 11:37:39 2019 +0000
- Revision:
- 4:1ef122d47bf3
A very classy affair
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
thomasmorris | 4:1ef122d47bf3 | 1 | #ifndef _FEEDBACK_HPP_ |
thomasmorris | 4:1ef122d47bf3 | 2 | #define _FEEDBACK_HPP_ |
thomasmorris | 4:1ef122d47bf3 | 3 | |
thomasmorris | 4:1ef122d47bf3 | 4 | #include "mbed.h" |
thomasmorris | 4:1ef122d47bf3 | 5 | #include "rtos.h" |
thomasmorris | 4:1ef122d47bf3 | 6 | #include "TextLCD.h" |
thomasmorris | 4:1ef122d47bf3 | 7 | |
thomasmorris | 4:1ef122d47bf3 | 8 | //Libraries and header file includes |
thomasmorris | 4:1ef122d47bf3 | 9 | |
thomasmorris | 4:1ef122d47bf3 | 10 | |
thomasmorris | 4:1ef122d47bf3 | 11 | extern Serial PC; //TX, RX |
thomasmorris | 4:1ef122d47bf3 | 12 | extern TextLCD Lcd; // rs, e, d4-d7 |
thomasmorris | 4:1ef122d47bf3 | 13 | |
thomasmorris | 4:1ef122d47bf3 | 14 | class FEEDBACK |
thomasmorris | 4:1ef122d47bf3 | 15 | { |
thomasmorris | 4:1ef122d47bf3 | 16 | public://Public member functions and variables |
thomasmorris | 4:1ef122d47bf3 | 17 | FEEDBACK(); |
thomasmorris | 4:1ef122d47bf3 | 18 | ~FEEDBACK(); |
thomasmorris | 4:1ef122d47bf3 | 19 | void Init(); |
thomasmorris | 4:1ef122d47bf3 | 20 | int Post(); |
thomasmorris | 4:1ef122d47bf3 | 21 | void FEEDBACK_test(); |
thomasmorris | 4:1ef122d47bf3 | 22 | //Public Functions |
thomasmorris | 4:1ef122d47bf3 | 23 | |
thomasmorris | 4:1ef122d47bf3 | 24 | //Public Variabls |
thomasmorris | 4:1ef122d47bf3 | 25 | |
thomasmorris | 4:1ef122d47bf3 | 26 | private://Private member functions and variables |
thomasmorris | 4:1ef122d47bf3 | 27 | |
thomasmorris | 4:1ef122d47bf3 | 28 | //Private Functions |
thomasmorris | 4:1ef122d47bf3 | 29 | |
thomasmorris | 4:1ef122d47bf3 | 30 | //Private Variables |
thomasmorris | 4:1ef122d47bf3 | 31 | |
thomasmorris | 4:1ef122d47bf3 | 32 | |
thomasmorris | 4:1ef122d47bf3 | 33 | }; |
thomasmorris | 4:1ef122d47bf3 | 34 | #endif //_FEEDBACK_ |