ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

13 wiersze
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);