38 lines
771 B
Plaintext
38 lines
771 B
Plaintext
![]() |
/*
|
||
|
Basic MQTT example
|
||
|
|
||
|
- connects to an MQTT server
|
||
|
- publishes "hello world" to the topic "outTopic"
|
||
|
- subscribes to the topic "inTopic"
|
||
|
*/
|
||
|
|
||
|
#include <SPI.h>
|
||
|
#include <Ethernet.h>
|
||
|
#include <PubSubClient.h>
|
||
|
|
||
|
// Update these with values suitable for your network.
|
||
|
byte mac[] = { 0xDE, 0xED, 0xBA, 0xFE, 0xFE, 0xED };
|
||
|
byte server[] = { 172, 16, 0, 2 };
|
||
|
byte ip[] = { 172, 16, 0, 100 };
|
||
|
|
||
|
void callback(char* topic, byte* payload, unsigned int length) {
|
||
|
// handle message arrived
|
||
|
}
|
||
|
|
||
|
PubSubClient client(server, 1883, callback);
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
Ethernet.begin(mac, ip);
|
||
|
if (client.connect("arduinoClient", "testuser", "testpass")) {
|
||
|
client.publish("outTopic","hello world");
|
||
|
client.subscribe("inTopic");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
client.loop();
|
||
|
}
|
||
|
|