Skip to content

Commit

Permalink
Merge with master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Veljkovic committed Oct 30, 2016
2 parents 20fc065 + bda126e commit 37d38f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PubNubDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ inline enum PubNub::PubNub_BH PubNub::_request_bh(PubNub_BASE_CLIENT &client, un
if (c != '2') {
/* HTTP code that is NOT 2xx means trouble.
* kthxbai */
DBGprint("Wrong HTTP status first digit ");
DBGprint("Wrong HTTP status first digit ASCII code: ");
DBGprint((int) c, DEC);
DBGprintln(" in bottom half");
return PubNub_BH_ERROR;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void loop() {

/* Publish */

char msg[] = "Hello world from Arduino for Adafruit Feather M0 WINC1500";
char msg[] = "\"Hello world from Arduino for Adafruit Feather M0 WINC1500\"";
WiFiClient *client = PubNub.publish(channel, msg);

if (!client) {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version=2.0.0
author=Vladimir Veljkovic <[email protected]>
maintainer=Vladimir Veljkovic <[email protected]>
sentence=Pubnub SDK for Arduino.
paragraph=Provides basic support for publish and subscribe.
paragraph=Provides basic support for publish and subscribe over Pubnub
category=Communication
url=http://github.com/pubnub/arduino
architectures=*
Expand Down

0 comments on commit 37d38f2

Please sign in to comment.