Newer
Older
M5StickCPlus_FactoryTest2022 / SampleSrc / serial01.ino
@motoki miura motoki miura on 10 May 2022 187 bytes SampleSource
int num = 0;
void setup() {
  Serial.begin(115200); // 通信速度をbpsで設定
}
void loop() {
  Serial.printf("%d \n" , num);
  num++;
  delay(500); // 500ミリ秒待つ
}