完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
我试图将数据发送到 mysql,我收到了“SEND OK”,但我的数据库仍然是空的。可能是什么问题?我附上了AT命令的代码,以及esp-post.php的代码。
代码:全选import board import busio import time import digitalio y=busio.UART(board.TX, board.RX, baudrate=115200) LED = digitalio.DigitalInOut(board.D13) LED.direction = digitalio.Direction.OUTPUT LED.value = True y.write(b'AT\r\n') time.sleep(2) print(y.read()) y.write(b'AT+CIPSTART=\"TCP\",\"l2022.infinityfreeapp.com\",80'+b'\r\n') time.sleep(3) print(y.read()) string='GET /postdata.php?proba=15' string2=' HTTP/1.1\r\n' string3='Host: l2022.infinityfreeapp.com\r\n' string4='Connection: close\r\n' lng=len(string+string2+string3+string4) y.write(b'AT+CIPSEND='+str(lng)+b'\r\n') time.sleep(2) print(y.read()) y.write(bytearray(string)) time.sleep(1) y.write(bytearray(string2)) time.sleep(1) y.write(bytearray(string3)) time.sleep(1) y.write(bytearray(string4)) time.sleep(1) time.sleep(10) print(y.read()) y.write(b'AT+CIPCLOSE\r\n') time.sleep(5) print(y.read()) 代码:全选 $proba=($_GET['proba']); require 'config.php'; $sql = "INSERT INTO testare(proba) VALUES('.$proba.')"; if($db->query($sql) === FALSE) { echo "Error: " . $sql . " " . $db->error; } echo " "; echo $db->insert_id; 在此图像中,这 5 个条目是通过网络浏览器中的链接手动发送的。REPL中,所有AT命令,返回OK |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
545浏览 6评论
457浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
437浏览 5评论
441浏览 4评论
411浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-21 21:36 , Processed in 0.803497 second(s), Total 73, Slave 56 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号