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.
HallSensor.h
00001 #ifndef MBED_HallSensor_H 00002 #define MBED_HallSensor_H 00003 00004 #include "mbed.h" 00005 00006 #define PI 3.141592 00007 00008 00009 class HallSensor 00010 { 00011 public: 00012 HallSensor(PinName a); 00013 00014 int getPinState (); 00015 float getSpeed_rps(); 00016 00017 protected: 00018 void risingCallback(); 00019 00020 InterruptIn m_hallSensor; 00021 Timer m_timer_sec; 00022 float m_period_sec; 00023 }; 00024 00025 #endif
Generated on Wed Jul 27 2022 20:12:06 by
