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?

[linux]UIAPduino Pro Micro CH32V003 V1.4でLチカ

0
Last updated at Posted at 2026-08-04
  • なぜかarduino ide 2以上しか動かない
  • ちょつとこつがいる
  • 300円で自販機で買った

Screenshot From 2026-08-05 06-46-43.png


https://github.com/YuukiUmeta-UIAP/board_manager_files/raw/main/package_uiap.jp_index.json

コンソール


sudo wget -O /etc/udev/rules.d/99-minichlink-uiap.rules https://raw.githubusercontent.com/YuukiUmeta-UIAP/ch32fun/3bfa603f11d493710f2a811b5a2dfad905d9425c/minichlink/99-minichlink-uiap.rules

コンソール


sudo udevadm control --reload-rules && sudo udevadm trigger

リセットを押しながら挿入


sudo dmesg

Screenshot From 2026-08-05 07-08-27.png

コンパイル-書き込みは、ちょっと遅い

Screenshot From 2026-08-05 07-06-34.png



void setup() {
  pinMode(2, OUTPUT);
}

void loop() {
  digitalWrite(2, HIGH);
  delay(1000);
  digitalWrite(2, LOW);
  delay(1000);
}



なぜかリセットするとLチカ

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?