Skip to content

Instantly share code, notes, and snippets.

@shuheilocale
Last active November 3, 2015 15:28
Show Gist options
  • Save shuheilocale/9af8e70a5b20d7adc3ba to your computer and use it in GitHub Desktop.
Save shuheilocale/9af8e70a5b20d7adc3ba to your computer and use it in GitHub Desktop.
aliexpressを使った格安Lチカ体験

1.aliexpressで↓を購入

こんなに要らないかもね!

2.funduinoをハンダ付け

慎重にね!!

3.ドライバGET

ドライバーをDLしてインストール
macの人は自分で探してね!

4.ワイアリング

適当にね!!

5.Arduino IDEを開いたら設定をpro mini用にする。

  • ツール→ボード→Arduino Pro or Pro Mini
  • ツール→プロセッサ→ATmega328(5V, 16MHz)
  • ツール→ポート→適宜設定

で、あとはコードを書く

void setup() {
  // put your setup code here, to run once:
  pinMode(9, OUTPUT);

}

void loop() {
  // put your main code here, to run repeatedly:

  digitalWrite(9, HIGH);
  delay(1000);

  digitalWrite(9, LOW);
  delay(1000);
}

完成!

@IsaoNakamura
Copy link

Linked URL becomes reverse by the body and an adapter.
https://gist.github.com/IsaoNakamura/32cf2b40df777bb26932/revisions

@shuheilocale
Copy link
Author

thanks for the notice!
I mistake it! and wanna fix it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment