ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

13 строки
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);