MQTT订阅

有人可以帮助我使用此代码吗?

目标是在有效载荷的值大于1000时触发Led。

这是基于esp8266mqtt PubSub客户端示例的MQTT订阅代码。我将用它来订阅来自CO2传感器的主题

我试图修改它的一部分,但我认为它可以对某种数据类型或错误条件进行某些处理?

#include <ESP8266WiFi.h>
#include <PubSubClient.h>

// Update these with values suitable for your network.

const char *ssid = "xxx";
const char *password = "xxx";
const char *mqtt_server = "xxxx";

WiFiClient espClient;
PubSubClient client(espClient);
long lastMsg = 0;
char msg[50];
int value = 0;
int led = D4;

void setup_wifi()
{

  delay(10);
  // We start by connecting to a WiFi network
  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);

  WiFi.begin(ssid,password);

  while (WiFi.status() != WL_CONNECTED)
  {
    delay(500);
    Serial.print(".");
  }

  randomSeed(micros());

  Serial.println("");
  Serial.println("WiFi connected");
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
}

void callback(char *topic,byte *payload,unsigned int length)
{
  Serial.print("Message arrived [");
  Serial.print(topic);
  Serial.print("] ");
  for (int i = 0; i < length; i++)
  {
    Serial.print((char)payload[i]);
  }
  Serial.println();

  // Switch on the LED if value of C02 is above 1000
  i = atoi (payload); //convert string to integer
  if ( i > 1000)      // comparison
  {
    digitalWrite(led,HIGH); // Turn the LED on 
  }
  else
  {
    digitalWrite(led,LOW); // Turn the LED off 
  }
}

void reconnect()
{
  // Loop until we're reconnected
  while (!client.connected())
  {
    Serial.print("Attempting MQTT connection...");
    // Create a random client ID
    String clientId = "ESP8266Client-";
    clientId += String(random(0xffff),HEX);
    // Attempt to connect
    if (client.connect(clientId.c_str()))
    {
      Serial.println("connected");
      // Once connected,publish an announcement...
      //client.publish("outTopic","Test");
      // ... and resubscribe
      client.subscribe("my/sensors/co2");
    }
    else
    {
      Serial.print("failed,rc=");
      Serial.print(client.state());
      Serial.println(" try again in 5 seconds");
      // Wait 5 seconds before retrying
      delay(5000);
    }
  }
}

void setup()
{
  pinmode(led,OUTPUT); // Initialize the BUILTIN_LED pin as an output
  Serial.begin(115200);
  setup_wifi();
  client.setServer(mqtt_server,1883);
  client.setCallback(callback);
}

void loop()
{
  if (!client.connected())
  {
    reconnect();
  }
  client.loop();
}

亲切的问候

嗨,这是我发布的内容:

void pubMessage() {
      char message[16];    
      snprintf(message,sizeof(message),"%d",co2);
      client.publish("my/sensors/co2",message);
      delay(30000);

uhkul 回答:MQTT订阅

首先,您将payload的第一个字节转换为字符。

由于它只是第一个字节,因此最大值为256。

第二,您将那个1字节的值与字符串'1000'

进行比较

在不知道确切发布内容的情况下,很难告诉您如何解决它。

如果要发布代表数字的字符串,则需要先用atoi()解析它,然后与整数1000而不是字符串进行比较。

如果它是一个字节值,那么在进行比较之前,您需要从传入的字节数组中读取正确的值。

本文链接:https://www.f2er.com/3093383.html

大家都在问