Click the link below to download the driver that matches the operating system. There are currently two driver chip versions (CP210X/CH9102). Please download the corresponding driver compressed package according to the version you are using. After decompressing the compressed package, select the installation package corresponding to the number of operating systems to install. (If you are not sure of the USB chip used by your device, you can install both drivers at the same time. During the installation process of CH9102_VCP_SER_MacOS v1.7
, an error may occur, but the installation is actually completed, just ignore it.)
Driver name | Applicable driver chip | Download link |
---|---|---|
CP210x_VCP_Windows | CP2104 | Download |
CP210x_VCP_MacOS | CP2104 | Download |
CP210x_VCP_Linux | CP2104 | Download |
CH9102_VCP_SER_Windows | CH9102 | Download |
CH9102_VCP_SER_MacOS v1.7 | CH9102 | Download |
[Click to view] Arduino development environment setup tutorial
File
->Preferences
->Settings
Additional Development Board Manager:
https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/arduino/package_m5stack_index.json
Tools
->Development Board:
->Development Board Manager...
M5Stack
, click Install
(If the search fails, you can try to restart the Arduino program)Tools
->Development board:
->M5Stack Arduino
, and select the corresponding development board configuration according to the device we are using (M5Stack-Paper
).Project
->Load Library
->Library Management...
M5EPD
and install it, as shown in the figure below. When downloading, please follow the pop-up prompts to install related dependent libraries.Tools
-> Port
-> COMx
), click the upload button (->
) on the menu bar, the program will It will be automatically compiled and uploaded to the device. The program will print the "Hello World" string on the M5Paper's screen.
#include <M5EPD.h>
M5EPD_Canvas canvas(&M5.EPD);
/* After M5Paper is started or reset
the program in the setUp () function will be run, and this part will only be run once.
在 M5Paper 启动或者复位后,即会开始执行setup()函数中的程序,该部分只会执行一次。 */
void setup(){
M5.begin(); //Init M5Paper. 初始化 M5Paper
M5.EPD.SetRotation(90); //Set the rotation of the display. 设置屏幕旋转角度
M5.EPD.Clear(true); //Clear the screen. 清屏
M5.RTC.begin(); //Init the RTC. 初始化 RTC
canvas.createCanvas(540, 960); //Create a canvas. 创建画布
canvas.setTextSize(3); //Set the text size. 设置文字大小
canvas.drawString("Hello World", 45, 350); //Draw a string. 绘制字符串
canvas.pushCanvas(0,0,UPDATE_MODE_DU4); //Update the screen. 更新屏幕
}
/* After the program in setup() runs, it runs the program in loop()
The loop() function is an infinite loop in which the program runs repeatedly
在setup()函数中的程序执行完后,会接着执行loop()函数中的程序
loop()函数是一个死循环,其中的程序会不断的重复运行 */
void loop(){
}
Github
When using FactoryTest to load special characters (such as Chinese, Japanese), please put the font file into the TF card and name it as font.ttf
.
ttf file download address
Arduino API
Tools