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.
Fork of HALLFX_ENCODER by
Encodeur.h
00001 #ifndef ENCODEUR_H 00002 #define ENCODEUR_H 00003 00004 #include "mbed.h" 00005 00006 class Encodeur{ 00007 00008 public: 00009 Encodeur(PinName encIn); 00010 void zero(); 00011 int lire_compteur(); 00012 double lire_tour(); 00013 void afficher() const; 00014 double distance(); 00015 00016 protected: 00017 int _compteur; 00018 double _tour; 00019 InterruptIn _enc_in; 00020 void incrementer(); 00021 }; 00022 00023 #endif
Generated on Thu Jul 14 2022 17:37:30 by
1.7.2
