Forum
EasyIoT server
MQTT client driver
MQTT update drivers?
MQTT update drivers?
Less
More
Posts: 111
Karma: 2
Thank you received: 12
8 years 7 months ago - 8 years 7 months ago #3201
by piman
@EasyIoT
is there any chance of an update driver for mqtt easyiot sever that works properly and bug free, I understand you are very busy and you are punting the cloud but I started with the Raspberry pi which is what I'd would like to keep to. Please!
Thank you Andy.
Last edit: 8 years 7 months ago by
piman .
Please Log in or Create an account to join the conversation.
Less
More
Posts: 5
Thank you received: 2
8 years 7 months ago #3205
by ppecuch
Hi,
I test too the driver and works. I have UNO+W5100 ---- Raspberry+Mosquitto. I tested ds18b20, dht11 and relay. Here is example ds18b20:
#include <SPI.h>
#include <Ethernet.h>
#include <PubSubClient.h> //set 3.1
#include <OneWire.h>
#include <DallasTemperature.h>
#define ONE_WIRE_BUS 7
byte mac[] = { 0x00, 0x02, 0xB3, 0x9F, 0xA3, 0xFD };
IPAddress ip(10,0,0,183);
IPAddress server(10,0,0,146);
float temp0 = 0;
char temp0String[6];
long lastjob = 0;
EthernetClient ethClient;
PubSubClient client(ethClient);
OneWire oneWire(ONE_WIRE_BUS);
DallasTemperature sensors(&oneWire);
void setup()
{
Serial.begin(115200);
client.setServer(server, 1883);
client.setCallback(callback);
Ethernet.begin(mac, ip);
delay(1500);
sensors.begin();
}
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);
}
Serial.println();
}
void reconnect() {
while (!client.connected()) {
Serial.print("Attempting MQTT connection...");
if (client.connect("arduinoClient")) {
Serial.print("connected ");
} else {
Serial.print("failed, rc=");
Serial.print(client.state());
Serial.println(" try again in 5 seconds");
delay(5000);
}
}
}
void loop()
{
if (!client.connected()) {
reconnect();
}
client.loop();
if (millis() > (30000 + lastjob))
{
sensors.requestTemperatures();
temp0 = (sensors.getTempCByIndex(0));
dtostrf(temp0, 2, 2, temp0String);
client.publish("outTopic",temp0String);
Serial.print("Teplota D0: ");
Serial.println(temp0);
lastjob = millis();
}
}
Please Log in or Create an account to join the conversation.
Less
More
Posts: 111
Karma: 2
Thank you received: 12
8 years 7 months ago #3213
by piman
Your answer to my question, is totally irrelevant I didn't say it does not work,
Please Log in or Create an account to join the conversation.
Less
More
Posts: 862
Karma: 25
Thank you received: 264
8 years 7 months ago #3219
by EasyIoT
piman wrote: @EasyIoT
is there any chance of an update driver for mqtt easyiot sever that works properly and bug free, I understand you are very busy and you are punting the cloud but I started with the Raspberry pi which is what I'd would like to keep to. Please!
Thank you Andy.
@piman right now I'm very busy doing other things, even Cloud is not priority. But when I will have time I will fix problem with MQTT on server...just be patient please...
The following user(s) said Thank You:
piman
Please Log in or Create an account to join the conversation.
Forum
EasyIoT server
MQTT client driver
MQTT update drivers?
Time to create page: 0.206 seconds