完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我想通过 Arduino UNO 对 ESP8266MOD 进行编程,原理图是:
照片是: Arduino UNO 代码是: 代码:全选/* * testESP8266 - AT */ #include SoftwareSerial ESPserial(8, 7); // RX | TX void setup() { Serial.begin(115200); // communication with the host computer //while (!Serial) { ; } // Start the software serial for communication with the ESP8266 ESPserial.begin(115200); Serial.println(""); Serial.println("Remember to to set Both NL & CR in the serial monitor."); Serial.println("Ready"); Serial.println(""); } void loop() { // listen for communication from the ESP8266 and then write it to the serial monitor if ( ESPserial.available() ) { Serial.write( ESPserial.read() ); } // listen for user input and send it to the ESP8266 if ( Serial.available() ) { ESPserial.write( Serial.read() ); } } 问题是当我想进入 AT 模式时,我将 CH_PD 连接到 GND,然后打开电源,然后将其连接到 VCC,当我在 Arduino IDE 串行监视器中键入“AT”时,没有任何反应。 |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
1138 浏览 1 评论
576浏览 6评论
477浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
461浏览 5评论
462浏览 4评论
437浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-22 14:38 , Processed in 0.685556 second(s), Total 74, Slave 57 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号