Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用他们的 MQTT 服务器将我的 Arduino 与以太网连接到 Xively,但无法进行身份验证。当我这样做时,client.connect("arduinoMQTT")我会失败。我尝试通过这样做将我的 API 密钥作为用户名传递,client.connect("arduinoMQTT", "APIKEY")但随后代码将无法编译。
client.connect("arduinoMQTT")
client.connect("arduinoMQTT", "APIKEY")
如何向 arduino 上的 Xively MQTT 服务器进行身份验证。
如果您查看 Arduino MQTT 客户端的 api 文档,您会发现您需要提供密码参数以及用户名。连接到 Xively 时,您使用您的 api 密钥作为用户名,使用 null 作为密码:
client.connect("arduinoMQTT", "APIKEY",null)
您可能还应该使用比 arduinoMQTT 更独特的东西作为客户端 ID。