https://github.com/appzer/arduino-pushsafer
Send push notifications through pushsafer.com from the arduino to your Browser, Android, iOS or Windows device.
https://github.com/appzer/arduino-pushsafer
android arduino arduino-pushsafer ios ipad iphone notification notifications push push-notifications pushnotification pushnotifications pushsafer win10 windows
Last synced: 3 months ago
JSON representation
Send push notifications through pushsafer.com from the arduino to your Browser, Android, iOS or Windows device.
- Host: GitHub
- URL: https://github.com/appzer/arduino-pushsafer
- Owner: appzer
- License: gpl-3.0
- Created: 2016-08-08T11:15:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-03-09T10:04:22.000Z (over 2 years ago)
- Last Synced: 2025-01-23T02:41:33.562Z (5 months ago)
- Topics: android, arduino, arduino-pushsafer, ios, ipad, iphone, notification, notifications, push, push-notifications, pushnotification, pushnotifications, pushsafer, win10, windows
- Language: C++
- Homepage: https://www.pushsafer.com
- Size: 23.4 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Send [pushsafer.com](https://www.pushsafer.com) notifications from your Arduino
Pushsafer make it easy and safe to get push-notifications in real time on your
- Android device
- iOS device (incl. iPhone, iPad, iPod Touch)
- Windows Phone & Desktop
- Browser (Chrome & Firefox)# Download
https://github.com/appzer/arduino-pushsafer/# pushsafer.com-Arduino
Send pushsafer.com messages from the arduino to your Browser, Android, iOS or Windows device.If you want to use for example a variable in the message, like a temperature reading from a temperature sensor.
Here is an example:
Text[40];Title[19] = "Current Temperature";
char temp_str[8];
// convert float value from temperature sensor to a string, where TemperatureSensor is a variable defined from a temperature sensor value
dtostrf(TemperatureSensor, 4, 1, temp_str);sprintf(Text,"The current temperature is now %s°",temp_str);
// pushsafer("Message","Title","Sound","Vibration","Icon","IconColor","URL","URLTitle","Time2Live","Priority","Retry","Expire","Confirm","Answer","AnswerOptions","AnswerForce","Device");
pushsafer(Text,Title,"12","3","62","#FF0000","https://www.pushsafer.com","Open Pushsafer","0","2","60","6000","10","1","yes|no|maybe","1","a");