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
foot_lamp_module.h@3:ea5cfd721b53, 2020-08-30 (annotated)
- 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?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| yamadola | 1:ef4b86795d79 | 1 | #ifndef FOOT_LAMP_MOULE_H |
| yamadola | 1:ef4b86795d79 | 2 | #define FOOT_LAMP_MOULE_H |
| yamadola | 1:ef4b86795d79 | 3 | |
| yamadola | 1:ef4b86795d79 | 4 | #include "lamp_module.h" |
| yamadola | 1:ef4b86795d79 | 5 | |
| yamadola | 1:ef4b86795d79 | 6 | class FootLampModule: public LampModule{ |
| yamadola | 1:ef4b86795d79 | 7 | private: |
| yamadola | 1:ef4b86795d79 | 8 | public: |
| yamadola | 1:ef4b86795d79 | 9 | FootLampModule(uint8_t LampPin, PLCController *pPlcAccessor); |
| yamadola | 1:ef4b86795d79 | 10 | void On(); |
| yamadola | 1:ef4b86795d79 | 11 | void Off(); |
| yamadola | 1:ef4b86795d79 | 12 | }; |
| yamadola | 1:ef4b86795d79 | 13 | |
| yamadola | 1:ef4b86795d79 | 14 | #endif |