Newer
Older
m5stickcplus / src / serial01.ino
@Motoki Miura Motoki Miura on 4 Mar 2021 187 bytes ir
int num = 0;
void setup() {
  Serial.begin(115200); // 通信速度をbpsで設定
}
void loop() {
  Serial.printf("%d \n" , num);
  num++;
  delay(500); // 500ミリ秒待つ
}