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?

More than 1 year has passed since last update.

STM32G071のシリアルでHello Worldと出力

Posted at

x NUCLEO-G071RB

目的
シリアルのテスト

o_con758.jpg




void setup() {
  // initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
}//setup

// the loop routine runs over and over again forever:
void loop() {
  // print out the value you read:
  Serial.println("Hello World !");
  delay(1000);        // delay in between reads for stability
}//loop


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?