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