前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >eps32和ros2之稳稳点亮一个LED灯(IO4)

eps32和ros2之稳稳点亮一个LED灯(IO4)

作者头像
zhangrelay
发布2021-12-02 14:14:07
4870
发布2021-12-02 14:14:07
举报

源码:

代码语言:javascript
复制
#include <ros2arduino.h>

#include <WiFi.h>
#include <WiFiUdp.h>
#include <WiFiClient.h>
//#include <WebServer.h>
//#include <ESPmDNS.h>

#define SSID       "***"
#define SSID_PW    "***"
#define AGENT_IP   "***"
#define AGENT_PORT *** //AGENT port number

#define LED 4
#define PUBLISH_FREQUENCY 1 //hz

char ledflag=2;

void publishString(std_msgs::String* msg, void* arg)
{
  (void)(arg);

  static int cnt = 0;
  if(ledflag==2){
    sprintf(msg->data, "欢乐的esp32和ros2 %d", cnt++);
  }
  else if(ledflag==0)
  {
    sprintf(msg->data, "欢乐的esp32灯灭了 %d", cnt++);
  }
  else if(ledflag==1)
  {
    sprintf(msg->data, "欢乐的esp32灯亮了 %d", cnt++);
  }
}

class StringPub : public ros2::Node
{
public:
  StringPub()
  : Node("esp32_pub_node")
  {
    ros2::Publisher<std_msgs::String>* publisher_ = this->createPublisher<std_msgs::String>("esp32_chatter");
    this->createWallFreq(PUBLISH_FREQUENCY, (ros2::CallbackFunc)publishString, nullptr, publisher_);
  }
};

WiFiUDP udp;

WiFiServer server(80);

void setup() 
{
  pinMode(LED, OUTPUT);
  WiFi.begin(SSID, SSID_PW);
  while(WiFi.status() != WL_CONNECTED);
  
  server.begin();

  ros2::init(&udp, AGENT_IP, AGENT_PORT);
  
}

void loop() 
{
  static StringPub StringNode;
  ros2::spin(&StringNode);
  
  WiFiClient client = server.available();   // listen for incoming clients
  if (client) {                             // if you get a client,
    String currentLine = "";                // make a String to hold incoming data from the client
    while (client.connected()) {            // loop while the client's connected
      if (client.available()) {             // if there's bytes to read from the client,
        char c = client.read();             // read a byte, then
        if (c == '\n') {                    // if the byte is a newline character

          // if the current line is blank, you got two newline characters in a row.
          // that's the end of the client HTTP request, so send a response:
          if (currentLine.length() == 0) {
            // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK)
            // and a content-type so the client knows what's coming, then a blank line:
            client.println("HTTP/1.1 200 OK");
            client.println("Content-type:text/html");
            client.println();

            // the content of the HTTP response follows the header:
            client.print("Click <a href=\"/H\">here</a> to turn the LED on pin 4 on. cslg<br>");
            client.print("Click <a href=\"/L\">here</a> to turn the LED on pin 4 off. cslg<br>");
            //client.print("Click <a href=\"/Blink\">here</a> to turn the LED on pin 2 off. cslg<br>");

            // The HTTP response ends with another blank line:
            client.println();
            // break out of the while loop:
            break;
          } else {    // if you got a newline, then clear currentLine:
            currentLine = "";
          }
        } else if (c != '\r') {  // if you got anything else but a carriage return character,
          currentLine += c;      // add it to the end of the currentLine
        }

        // Check to see if the client request was "GET /H" or "GET /L":
        if (currentLine.endsWith("GET /H")) {
          digitalWrite(LED, LOW);               // GET /H turns the LED on
        //  sprintf(msg->data, "灯亮了");
          ledflag=1;
        }
        if (currentLine.endsWith("GET /L")) {
          digitalWrite(LED, HIGH);                // GET /L turns the LED off
        //  sprintf(msg->data, "灯灭了");
          ledflag=0;
        }
      }
    }
    // close the connection:
    client.stop();
  }
}

需要自己依据网络情况配置。

默认灯亮,显示欢乐esp32和ros2。

点击off,效果如下:

点击on

显示1s一次,有滞后,再关闭。

多次测试后:

稳定工作10分钟,问题不大。最多测试1小时。

-后续,esp32做成ros2机器人遥控器-

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-09-21 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档