前言
本文带领大家使用esp8266的串口模块
一、代码解析
void setup() { // put your setup code here, to run once: Serial.begin(115200);//设置波特率 Serial.printf("Hello\n");//开机发送Hello 此函数用法和C语言中的printf一样 } void loop() { // put your main code here, to run repeatedly: }
总结
在esp8266里面使用串口还是比较容易的。