0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

M5NanoC6 Wifi 電流 OFF

0
Last updated at Posted at 2026-05-29

参考

いろいろ注意

  • デジタル教育、非営利、調査研究目的で最小限引用しました。
  • いろいろ、m5nanoc6を百度で調べたら教育目的で、Pythonが主流、githubでないのは、人権なし?

結果

不明

プログラム


#include <Arduino.h>
#include <WiFi.h>
#include <esp_bt.h>
const int LED_PIN = 7;  //Blue LED

void setup() {
  WiFi.mode(WIFI_OFF);
  btStop();
  pinMode(LED_PIN, OUTPUT);
}

void loop() {
  digitalWrite(LED_PIN, HIGH);
  delay(10);
  digitalWrite(LED_PIN, LOW);
  delay(990);
}


0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?