单片机课堂思考题-如何用手机控制单片机IO口-如点亮一个LED

举报
zhangrelay 发表于 2021/11/03 23:31:14 2021/11/03
【摘要】 主要考察学生思路,常见现象是直接网上查找然后开始刷刷看并写到本子上。 很难了,思考-检索-推荐,在互联网算法的投喂下,大部分已经丧失了独立思考的能力了。 第一步,需要使手机和单片机建立连接,通常手机不用串口连接外设,一般而言适用无线wifi和蓝牙。 第二步,才是构思程序架构,比如控制哪些IO口,如何配置wifi和蓝牙等。 第三步...

主要考察学生思路,常见现象是直接网上查找然后开始刷刷看并写到本子上。

很难了,思考-检索-推荐,在互联网算法的投喂下,大部分已经丧失了独立思考的能力了。

第一步,需要使手机和单片机建立连接,通常手机不用串口连接外设,一般而言适用无线wifi和蓝牙。

第二步,才是构思程序架构,比如控制哪些IO口,如何配置wifi和蓝牙等。

第三步,在设计好程序流程图之后,依据具体芯片特色进行程序设计。

简言之,连通性和控制程序。

参考程序如下:

IO口可以更换为2、4等,依据具体情况适当调整。


  
  1. #include <WiFi.h>
  2. const char* ssid = "yourssid";
  3. const char* password = "yourpasswd";
  4. WiFiServer server(80);
  5. void setup()
  6. {
  7. Serial.begin(115200);
  8. pinMode(5, OUTPUT); // set the LED pin mode
  9. delay(10);
  10. // We start by connecting to a WiFi network
  11. Serial.println();
  12. Serial.println();
  13. Serial.print("Connecting to ");
  14. Serial.println(ssid);
  15. WiFi.begin(ssid, password);
  16. while (WiFi.status() != WL_CONNECTED) {
  17. delay(500);
  18. Serial.print(".");
  19. }
  20. Serial.println("");
  21. Serial.println("WiFi connected.");
  22. Serial.println("IP address: ");
  23. Serial.println(WiFi.localIP());
  24. server.begin();
  25. }
  26. int value = 0;
  27. void loop(){
  28. WiFiClient client = server.available(); // listen for incoming clients
  29. if (client) { // if you get a client,
  30. Serial.println("New Client."); // print a message out the serial port
  31. String currentLine = ""; // make a String to hold incoming data from the client
  32. while (client.connected()) { // loop while the client's connected
  33. if (client.available()) { // if there's bytes to read from the client,
  34. char c = client.read(); // read a byte, then
  35. Serial.write(c); // print it out the serial monitor
  36. if (c == '\n') { // if the byte is a newline character
  37. // if the current line is blank, you got two newline characters in a row.
  38. // that's the end of the client HTTP request, so send a response:
  39. if (currentLine.length() == 0) {
  40. // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK)
  41. // and a content-type so the client knows what's coming, then a blank line:
  42. client.println("HTTP/1.1 200 OK");
  43. client.println("Content-type:text/html");
  44. client.println();
  45. // the content of the HTTP response follows the header:
  46. client.print("Click <a href=\"/H\">here</a> to turn the LED on pin 5 on.<br>");
  47. client.print("Click <a href=\"/L\">here</a> to turn the LED on pin 5 off.<br>");
  48. // The HTTP response ends with another blank line:
  49. client.println();
  50. // break out of the while loop:
  51. break;
  52. } else { // if you got a newline, then clear currentLine:
  53. currentLine = "";
  54. }
  55. } else if (c != '\r') { // if you got anything else but a carriage return character,
  56. currentLine += c; // add it to the end of the currentLine
  57. }
  58. // Check to see if the client request was "GET /H" or "GET /L":
  59. if (currentLine.endsWith("GET /H")) {
  60. digitalWrite(5, HIGH); // GET /H turns the LED on
  61. }
  62. if (currentLine.endsWith("GET /L")) {
  63. digitalWrite(5, LOW); // GET /L turns the LED off
  64. }
  65. }
  66. }
  67. // close the connection:
  68. client.stop();
  69. Serial.println("Client Disconnected.");
  70. }
  71. }

连接上WiFi之后,一定要注意查看串口获取单片机wifi的ip地址然后,适用手机或者电脑的浏览器登陆,就可以控制灯亮灭了。

也就是控制IO口输出高低电平。

文章来源: zhangrelay.blog.csdn.net,作者:zhangrelay,版权归原作者所有,如需转载,请联系作者。

原文链接:zhangrelay.blog.csdn.net/article/details/121114395

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。