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.
Bumper.cpp
00001 #include "Bumper.hpp" 00002 00003 Bumper::Bumper(TargetManager& target_manager, const int id, PinName pin) : 00004 interrupt_in(pin), 00005 target_manager(target_manager), 00006 id(id) 00007 { 00008 interrupt_in.rise(callback(this, &Bumper::bumped)); 00009 } 00010 00011 void Bumper::bumped() 00012 { 00013 target_manager.target_hit(id); 00014 }
Generated on Wed Jul 13 2022 19:54:24 by
