Comments on: ESP32: Send Pushover Notifications (Arduino IDE) https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/ Learn ESP8266, ESP32, Arduino, and Raspberry Pi Sun, 18 Feb 2024 11:52:18 +0000 hourly 1 https://wordpress.org/?v=6.8.2 By: Sara Santos https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-892456 Sun, 18 Feb 2024 11:52:18 +0000 https://randomnerdtutorials.com/?p=127792#comment-892456 In reply to Chaminda.

Hi.
Thanks for letting us know.
We updated the code with the updated certificate.
Regards,
Sara

]]>
By: Chaminda https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-892298 Sat, 17 Feb 2024 16:34:32 +0000 https://randomnerdtutorials.com/?p=127792#comment-892298 The above certificate has been deprecated had to download and install new cert from website. As it is a remote system I was designing decided to use only http without the cert. had to modify the code below

// Create a WiFiClientSecure object ***********not using secure commented out as hardcoded cert will expire on remote system
//WiFiClientSecure client;
// Set the certificate
//client.setCACert(PUSHOVER_ROOT_CA);

// Create an HTTPClient object
HTTPClient https; // says https but at the moment only using http

// Specify the target URL
https.begin(pushoverApiEndpoint); // not using secure client

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-838882 Mon, 05 Jun 2023 17:31:09 +0000 https://randomnerdtutorials.com/?p=127792#comment-838882 In reply to Curt.

Hi.
I’m not sure if that’s possible.
I think they need to have an account, but I’m not sure.
It is better to contact pushover support to know how to proceed.
Regards,
Sara

]]>
By: Curt https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-838477 Fri, 02 Jun 2023 16:57:38 +0000 https://randomnerdtutorials.com/?p=127792#comment-838477 Thanks, this works great ! As does Pushover…its a bargain at $5 Onetime.

One thing I have not been able to figure out is: Can additional people be notified, without them having a Pushover account ?

Anyone know the answer to this ?

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-838440 Fri, 02 Jun 2023 08:33:02 +0000 https://randomnerdtutorials.com/?p=127792#comment-838440 In reply to Fred from Paris.

Hi.
I theory, it should be compatible, but I haven’t tried it.
Regards,
Sara

]]>
By: Fred from Paris https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-838328 Thu, 01 Jun 2023 12:08:12 +0000 https://randomnerdtutorials.com/?p=127792#comment-838328 Thank you Sara,
Another question: is this sketch compatible with the use of WifiManager instead of using SSID/password ?

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-837398 Fri, 26 May 2023 15:23:12 +0000 https://randomnerdtutorials.com/?p=127792#comment-837398 In reply to Fred from Paris.

Hi.
Yes, you can do that.
Or something like:
notification[“message”] = “The temperature is” + String(mytemperature).c_str();
Regards,
Sara

]]>
By: Sara Santos https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-837396 Fri, 26 May 2023 15:21:22 +0000 https://randomnerdtutorials.com/?p=127792#comment-837396 In reply to Al.

Hi.
Take a look at “WifiManager”.
Regards,
Sara

]]>
By: Fred from Paris https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-837257 Thu, 25 May 2023 12:20:31 +0000 https://randomnerdtutorials.com/?p=127792#comment-837257 Hello,
Could you please elaborate on how you can replace the message notification shown in your example sketch (notification[“message”] = “Hello from ESP32”;) where it’s only raw text, by a variable like a temperature value that the ESP32 has retrieved in the loop section ?
Can you replace it by something like:
notification[“message”] = mytemperature;
Thanks !

]]>
By: Al https://randomnerdtutorials.com/esp32-pushover-notifications-arduino/#comment-837152 Wed, 24 May 2023 09:58:51 +0000 https://randomnerdtutorials.com/?p=127792#comment-837152 Thanks for the tutorials.
What would you suggest as the best way, instead of hard coding the WIFI credentials, have an option to input the WIFI info, and also a way to change it, not by coding.
Thanks
Al

]]>