Tatsuya Yamamoto / Mbed 2 deprecated UV_Robot_Nucleo

Dependencies:   mbed X_NUCLEO_PLC01A1 ros_lib_melodic

Committer:
yamadola
Date:
Sun Aug 30 06:39:43 2020 +0000
Revision:
3:ea5cfd721b53
Parent:
1:ef4b86795d79
This code includes all functions for Amabie.; However, I have never debugged it with the real body.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yamadola 1:ef4b86795d79 1 #include "foot_lamp_module.h"
yamadola 1:ef4b86795d79 2
yamadola 1:ef4b86795d79 3 FootLampModule::FootLampModule(uint8_t LampPin, PLCController *pPlcAccessor):LampModule(LampPin, pPlcAccessor){}
yamadola 1:ef4b86795d79 4
yamadola 1:ef4b86795d79 5 void FootLampModule::On(){
yamadola 1:ef4b86795d79 6 _Lamp.On();
yamadola 1:ef4b86795d79 7 }
yamadola 1:ef4b86795d79 8
yamadola 1:ef4b86795d79 9 void FootLampModule::Off(){
yamadola 1:ef4b86795d79 10 _Lamp.Off();
yamadola 1:ef4b86795d79 11 }