Communication

Hi
My device connection flips in and out and i do not receive any data?
Any suggestions what is wrong?

which device are you using?

Arduino UNO.

It´s now ok. I hade to add a delay(100); in the loop().

void loop()
{
Cayenne.loop();
Cayenne.virtualWrite(1, 110);
Cayenne.virtualWrite(2, 220);
delay(100);
}

you dont have to add the publish lines in the main loop. have a look at Sending MQTT messages within rate limits