ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
259B

  1. #pragma once
  2. #include <cstdint>
  3. #include <string>
  4. #include <cstdio>
  5. int64_t time_us();
  6. std::string read_file(const char *path);
  7. void write_file(const char *path, const std::string &data);
  8. void write_file(const char *path, const char *data, int len = -1);