mirror of
https://github.com/m5stack/M5Stack.git
synced 2026-05-20 10:06:46 -07:00
17 lines
262 B
Arduino
17 lines
262 B
Arduino
#include <M5Stack.h>
|
|
|
|
// the setup routine runs once when M5Stack starts up
|
|
void setup(){
|
|
|
|
// Initialize the M5Stack object
|
|
M5.begin();
|
|
|
|
// LCD display
|
|
M5.Lcd.print("Hello World");
|
|
}
|
|
|
|
// the loop routine runs over and over again forever
|
|
void loop() {
|
|
|
|
}
|