Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed X_NUCLEO_PLC01A1 ros_lib_melodic
Diff: foot_lamp_module.cpp
- Revision:
- 1:ef4b86795d79
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/foot_lamp_module.cpp Sat Aug 15 09:09:33 2020 +0000 @@ -0,0 +1,11 @@ +#include "foot_lamp_module.h" + +FootLampModule::FootLampModule(uint8_t LampPin, PLCController *pPlcAccessor):LampModule(LampPin, pPlcAccessor){} + +void FootLampModule::On(){ + _Lamp.On(); +} + +void FootLampModule::Off(){ + _Lamp.Off(); +} \ No newline at end of file