书栈网 · BookStack 本次搜索耗时 0.042 秒,为您找到 50 个相关结果.
  • What about the ESP8266/ESP32?

    834 2020-02-07 《TinyGo Document》
    What about the ESP8266/ESP32? What about the ESP8266/ESP32? As of February 2019 there is now an official project from Espressif to add the Xtensa chip architecture to LLVM. Fo...
  • Drivers

    840 2020-02-07 《TinyGo Document》
    Drivers Drivers TinyGo has driver support for 44 different sensors and devices such as digital accelerometers and multicolor LEDs. All of the drivers code is in the TinyGo Dri...
  • 触摸中断实现单机和长按的模拟

    2945 2018-06-07 《arduino-esp32》
    触摸中断单机和长按 esp32 arduino 可以监听触摸的中断 我们可以利用这一机制去实现单机和长按的模拟 下面是代码示例 #define PRESSED 1 // 按下的标识 #define NOT_PRESSED 0 // 松开的标识 const unsigned long SHORT_PRESS = ...
  • Arduino

    InfluxDB Arduino Client Basic code for InfluxDB 2 Basic code for InfluxDB 1 Connecting to InfluxDB Cloud 2 Writing in Batches Timestamp Configure Time Batch Size B...
  • Arduino

    InfluxDB Arduino Client Table of contents Basic code for InfluxDB 2 Basic code for InfluxDB 1 Connecting to InfluxDB Cloud 2 Writing in Batches Timestamp Configure Time Batch...
  • Client TLS

    Client TLS Client TLS EMQX provides sample MQTT client code and project example via the MQTT-Client-Examples (opens new window) Git repository, and TLS use guide is provided in...
  • 客户端 TLS

    客户端 TLS 客户端 TLS EMQX 通过 MQTT-Client-Examples (opens new window) Git 仓库提供了 MQTT 客户端库接入示例和工程项目代码,TLS 接入在对应的 example 中提供: Android (opens new window) Csharp-MqttNet (opens new w...
  • Arduino

    InfluxDB Arduino Client Table of contents Basic code for InfluxDB 2 Basic code for InfluxDB 1 Connecting to InfluxDB Cloud 2 Writing in Batches Timestamp Configure Ti...
  • Arduino

    InfluxDB Arduino Client Table of contents Basic code for InfluxDB 2 Basic code for InfluxDB 1 Connecting to InfluxDB Cloud 2 Writing in Batches Timestamp Configure Ti...
  • GPIO中断

    2960 2018-06-05 《arduino-esp32》
    GPIO中断 arduino对esp32的gpio中断控制非常简单 函数定义 attachInterrupt ( pin , function , mode ); 参数详解 pin gpio的pin脚值 function 当中断触发时调用的函数 mode 中断响应的模式 CHANGE 边沿触发 只要发生电...