ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
200B

  1. #include <sys/time.h>
  2. #include "utils.hpp"
  3. int64_t time_us() {
  4. struct timeval tv_now;
  5. gettimeofday(&tv_now, NULL);
  6. return (int64_t)tv_now.tv_sec * 1000000L + (int64_t)tv_now.tv_usec;
  7. }