thathollywood / PushoverArduino

Send Pushover messages from the Arduino YUN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PushoverArduino

Send pushover.net messages from the Arduino YUN to your android or iOS device.

If you want to use for example a vaiable in the message, like a temperature reading from a temperature sensor.

Here is an example:

Text[40];

char temp_str[8];

dtostrf(TemperatureSensor, 4, 1, temp_str); // convert float value from temperature sensor reading to a string, where TemperatureSensor is a variable defined from a temperature sensor value

sprintf(Text,"The current temperature is now %s°",temp_str);

pushover(Text,0);

About

Send Pushover messages from the Arduino YUN


Languages

Language:Arduino 100.0%