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.

WioLTE: Hello World

Posted at

プログラム

hello_world/hello_world.ino
// ---------------------------------------------------------------------
/*
	hello_world.ino

						Aug/21/2024
*/
// ---------------------------------------------------------------------
#define	PROGRAM	"hellow_world.ino"
#define	VERSION	"2024-8-21 PM 12:38"

int count = 0;
void setup()
{
	SerialUSB.println("*** start ***");
	SerialUSB.println(PROGRAM);
	SerialUSB.println(VERSION);
	delay(1000);
	SerialUSB.println("*** setup end ***");
	delay(1000);
}

// ---------------------------------------------------------------------
void loop() 
{
	SerialUSB.println(PROGRAM);
	SerialUSB.println(VERSION);
	SerialUSB.println("Hello World! " + String(count));
	delay(1000);
	SerialUSB.println("Good Morning! " + String(count));
	delay(1000);
	SerialUSB.println("こんにちは " + String(count));
	SerialUSB.println();
	delay(3000);
	count++;
}

// ---------------------------------------------------------------------

Arduino IDE

image.png

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?