【问题标题】:MQTT subscriptionMQTT 订阅
【发布时间】:2019-11-15 18:13:47
【问题描述】:

有人可以帮我处理这段代码吗?

目标是当payload的值> 1000时触发一个Led。

它是基于esp8266mqtt PubSub客户端示例的MQTT订阅代码。我将使用它来订阅来自 CO2sensor 的主题

我试图修改它的一部分,但我认为它对数据类型或错误条件做了一些事情?

#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);

【问题讨论】:

    标签: mqtt subscription payload


    【解决方案1】:

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

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

    其次,您将 1 个字节的值与字符串 '1000' 进行比较

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

    如果您要发布一个表示数字的字符串,那么您需要先使用 atoi() 对其进行解析,然后与整数 1000 进行比较,而不是字符串。

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

    【讨论】:

    • Edit 问题添加更多细节。
    • 我已经添加了我的发布代码,这是一个字节值?
    • 不,这是一个字符串值
    • 好的,我进行了转换和比较,但出现编译错误:error: invalid conversion from 'byte* {aka unsigned char*}' to 'const char*' [-fpermissive]
    • 这是一个完全不同的问题,问一个新问题
    猜你喜欢
    • 1970-01-01
    • 2016-06-10
    • 2015-02-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-02-02
    • 1970-01-01
    相关资源
    最近更新 更多