arduino:m5stickc:04.speaker

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン両方とも次のリビジョン
arduino:m5stickc:04.speaker [2020/08/13 17:23] babaarduino:m5stickc:04.speaker [2020/08/15 14:00] baba
行 6: 行 6:
 </html> </html>
  
 +<code>
 +#include <M5StickC.h>
 +void setup() {
 +  // put your setup code here, to run once:
 +  pinMode(26,OUTPUT);
 +}
 +
 +void loop() {
 +  // put your main code here, to run repeatedly:
 +  digitalWrite(26, HIGH);
 +  delay(1);
 +  digitalWrite(26, LOW);
 +  delay(1);
 +}
 +</code>
  • /home/users/2/lolipop.jp-4404d470cd64c603/web/ws/data/pages/arduino/m5stickc/04.speaker.txt
  • 最終更新: 2020/09/07 09:29
  • by baba