Skip to content
This repository was archived by the owner on May 7, 2025. It is now read-only.

Commit ae6ba40

Browse files
committed
Add logo and boost ver
1 parent 6924712 commit ae6ba40

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

blynk-espruino.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ Blynk.prototype.onReceive = function(data) {
243243
self.sendMsg(MsgType.PING);
244244
}, self.heartbeat);
245245
console.log('Authorized');
246-
self.sendMsg(MsgType.INTERNAL, ['ver', '0.5.2', 'buff-in', 256, 'dev', 'espruino']);
246+
self.sendMsg(MsgType.INTERNAL, ['ver', '0.5.3', 'buff-in', 256, 'dev', 'espruino']);
247247
self.emit('connect');
248248
} else {
249249
//if invalid token, no point in trying to reconnect

blynk.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -267,15 +267,15 @@ var Blynk = function(auth, options) {
267267
var options = options || {};
268268
this.heartbeat = options.heartbeat || (10*1000);
269269

270-
console.log(`
271-
___ __ __
272-
/ _ )/ /_ _____ / /__
273-
/ _ / / // / _ \\/ '_/
274-
/____/_/\\_, /_//_/_/\\_\\
275-
/___/
276-
277-
Give Blynk a Github star! => https://github.com/vshymanskyy/blynk-library-js
278-
`);
270+
console.log("\
271+
___ __ __\
272+
/ _ )/ /_ _____ / /__\
273+
/ _ / / // / _ \\/ '_/\
274+
/____/_/\\_, /_//_/_/\\_\\\
275+
/___/\
276+
\
277+
Give Blynk a Github star! => https://github.com/vshymanskyy/blynk-library-js\
278+
");
279279

280280
// Auto-detect board
281281
if (options.board) {
@@ -420,7 +420,7 @@ Blynk.prototype.onReceive = function(data) {
420420
self.sendMsg(MsgType.PING);
421421
}, self.heartbeat);
422422
console.log('Authorized');
423-
self.sendMsg(MsgType.INTERNAL, ['ver', '0.5.2', 'buff-in', 4096, 'dev', 'js']);
423+
self.sendMsg(MsgType.INTERNAL, ['ver', '0.5.3', 'buff-in', 4096, 'dev', 'js']);
424424
self.emit('connect');
425425
} else {
426426
console.log('Could not login:', string_of_enum(MsgStatus, msg_len));

control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: blynk-library-js
2-
Version: 0.5.2
2+
Version: 0.5.3
33
Description: Blynk library implementation for JavaScript (Node.js, Espruino)
44
Section: extras
55
Priority: optional

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "blynk-library",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"description": "Blynk library implementation for JavaScript (Node.js, Espruino)",
55
"author": "Volodymyr Shymanskyy",
66
"license": "MIT",

0 commit comments

Comments
 (0)