We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I could not get the library to compile in the Arduino IDE 1.9.0-beta unless I changed the following in the PushBullet.cpp file:
PushBullet.cpp
removed if( at line54
if(
Changed
sendAndToggl("/v2/pushes", "{\"body\":\""+message+"\",\"title\":\""+title+"\",\"type\":\"note\"}");
to
String req = buildRequest("/v2/pushes", "{\"body\":\""+message+"\",\"title\":\""+title+"\",\"type\":\"note\"}"); sendAndToggl(req);
for PushBullet::sendNotePush, PushBullet::sendLinkPush, PushBullet::sendSMSPush, and PushBullet::copyToClipboard
PushBullet::sendNotePush
PushBullet::sendLinkPush
PushBullet::sendSMSPush
PushBullet::copyToClipboard
It appears that 124553e introduced all of these lines which caused the compilation issues for me
The text was updated successfully, but these errors were encountered:
Also PushBulllet.h has copyToClipboard definded as void while the cpp has it as a bool
Sorry, something went wrong.
No branches or pull requests
I could not get the library to compile in the Arduino IDE 1.9.0-beta unless I changed the following in the
PushBullet.cpp
file:Change 1
removed
if(
at line54Change 2
Changed
to
for
PushBullet::sendNotePush
,PushBullet::sendLinkPush
,PushBullet::sendSMSPush
, andPushBullet::copyToClipboard
Notes
It appears that 124553e introduced all of these lines which caused the compilation issues for me
The text was updated successfully, but these errors were encountered: