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.

vor 3 Jahren
12345678910111213141516171819
  1. #ifndef FreqMeasure_h
  2. #define FreqMeasure_h
  3. #include <Arduino.h>
  4. class FreqMeasureClass {
  5. public:
  6. static void begin(void);
  7. static uint8_t available(void);
  8. static uint32_t read(void);
  9. static float countToFrequency(uint32_t count);
  10. static float countToNanoseconds(uint32_t count);
  11. static void end(void);
  12. };
  13. extern FreqMeasureClass FreqMeasure;
  14. #endif