ESP32 Native version of Blinky, featureful controller code for WS2811/WS2812/NeoPixels
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
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);