PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- #ifndef FreqMeasure_h
- #define FreqMeasure_h
-
- #include <Arduino.h>
-
- class FreqMeasureClass {
- public:
- static void begin(void);
- static uint8_t available(void);
- static uint32_t read(void);
- static float countToFrequency(uint32_t count);
- static float countToNanoseconds(uint32_t count);
- static void end(void);
- };
-
- extern FreqMeasureClass FreqMeasure;
-
- #endif
|