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: LedController mbed-rtos mbed NerfUSXbee Servomotor TargetManager
Fork of NerfUS by
include/Calibrator.hpp
- Committer:
- GaiSensei
- Date:
- 2017-04-11
- Revision:
- 46:853966aab733
File content as of revision 46:853966aab733:
#ifndef CALIBRATOR_HPP #define CALIBRATOR_HPP #include "Servomotor.hpp" class Calibrator { public: Calibrator(Servomotor& servomotor); void calibrate(); void on_rise(); private: Servomotor& servomotor; bool is_bumper_pressed; }; #endif