Added the pin outs
Dependencies: mbed mbed-rtos ShiftReg TextLCD
Power/Power.cpp@7:d0159f675b30, 2019-05-06 (annotated)
- Committer:
- thomasmorris
- Date:
- Mon May 06 22:13:28 2019 +0000
- Revision:
- 7:d0159f675b30
- Parent:
- 3:3700f0c29710
Added the pinouts
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
thomasmorris | 3:3700f0c29710 | 1 | #include "Power.hpp" |
thomasmorris | 3:3700f0c29710 | 2 | |
thomasmorris | 3:3700f0c29710 | 3 | |
thomasmorris | 3:3700f0c29710 | 4 | POWER::POWER(PinName N1, PinName N2, PinName N3, PinName N4) : Muscle_1(N1),Muscle_2(N2),FEEDBACK_1(N3),FEEDBACK_2(N4) |
thomasmorris | 3:3700f0c29710 | 5 | { |
thomasmorris | 3:3700f0c29710 | 6 | |
thomasmorris | 3:3700f0c29710 | 7 | } |
thomasmorris | 3:3700f0c29710 | 8 | |
thomasmorris | 3:3700f0c29710 | 9 | POWER::~POWER(){} //Destructor |
thomasmorris | 3:3700f0c29710 | 10 | |
thomasmorris | 3:3700f0c29710 | 11 | void POWER::Init(){}//Initialisation Routine |
thomasmorris | 3:3700f0c29710 | 12 | int POWER::Post()//Power on self test |
thomasmorris | 3:3700f0c29710 | 13 | { |
thomasmorris | 3:3700f0c29710 | 14 | return 1;//Success |
thomasmorris | 3:3700f0c29710 | 15 | } |