|
| 1 | +# blynk-library-js |
| 2 | +Blynk library implementation for JavaScript (Node.js, Espruino) |
| 3 | + |
1 | 4 | [](https://www.npmjs.com/package/blynk-library)
|
2 | 5 | [](https://www.npmjs.com/package/blynk-library)
|
3 | 6 | [](https://github.com/vshymanskyy/blynk-library-js)
|
|
6 | 9 |
|
7 | 10 | [](https://nodei.co/npm/blynk-library/)
|
8 | 11 |
|
9 |
| -Implementations for other platforms: |
10 |
| -* [Arduino](https://github.com/blynkkk/blynk-library) |
11 |
| -* [Particle](https://github.com/vshymanskyy/blynk-library-spark) |
12 |
| -* [Python, MicroPython](https://github.com/vshymanskyy/blynk-library-python) |
13 |
| -* [OpenWrt](https://github.com/vshymanskyy/blynk-library-openwrt) |
14 |
| -* [MBED](https://developer.mbed.org/users/vshymanskyy/code/Blynk/) |
15 |
| -* [Node-RED](https://www.npmjs.com/package/node-red-contrib-blynk-ws) |
16 |
| - |
| 12 | +If you like **Blynk** - give it a star, or fork it and contribute! |
| 13 | +[](https://github.com/blynkkk/blynk-library/stargazers) |
| 14 | +[](https://github.com/blynkkk/blynk-library/network) |
17 | 15 | __________
|
18 | 16 |
|
19 |
| -# blynk-library-js |
20 |
| -Blynk library implementation for JavaScript (Node.js, Espruino) |
| 17 | +## What is Blynk? |
| 18 | +Blynk provides iOS and Android apps to control any hardware over the Internet or directly using Bluetooth. |
| 19 | +You can easily build graphic interfaces for all your projects by simply dragging and dropping widgets, right on your smartphone. |
| 20 | +Blynk is the most popular IoT platform used by design studios, makers, educators, and equipment vendors all over the world. |
| 21 | + |
| 22 | + |
| 23 | + |
21 | 24 |
|
22 |
| -# What is Blynk? |
23 |
| -Blynk is a platform with iOS and Android apps to control Arduino, Raspberry Pi and the likes over the Internet. |
24 |
| -You can easily build graphic interfaces for all your projects by simply dragging and dropping widgets. |
25 |
| -If you need more information, please follow these links: |
| 25 | +## Download |
| 26 | +**Blynk [Arduino Library](https://github.com/blynkkk/blynk-library/releases/latest)** |
26 | 27 |
|
27 |
| -* [Kickstarter campaign](https://www.kickstarter.com/projects/167134865/blynk-build-an-app-for-your-arduino-project-in-5-m/description) |
28 |
| -* [Blynk downloads, docs, tutorials](http://www.blynk.cc) |
29 |
| -* [Blynk community](http://community.blynk.cc) |
30 |
| -* [Facebook](http://www.fb.com/blynkapp) |
31 |
| -* [Twitter](http://twitter.com/blynk_app) |
| 28 | +**Blynk App: [Google Play](https://play.google.com/store/apps/details?id=cc.blynk) / [App Store](https://itunes.apple.com/us/app/blynk-control-arduino-raspberry/id808760481?ls=1&mt=8)** |
| 29 | + |
| 30 | +**Blynk [Server](https://github.com/blynkkk/blynk-server)** |
| 31 | + |
| 32 | +## Documentation |
| 33 | +Social: [Webpage](http://www.blynk.cc) / [Facebook](http://www.fb.com/blynkapp) / [Twitter](http://twitter.com/blynk_app) / [Kickstarter](https://www.kickstarter.com/projects/167134865/blynk-build-an-app-for-your-arduino-project-in-5-m/description) |
| 34 | +Help Center: http://help.blynk.cc |
| 35 | +Documentation: http://docs.blynk.cc/#blynk-firmware |
| 36 | +Community Forum: http://community.blynk.cc |
| 37 | +Examples Browser: http://examples.blynk.cc |
| 38 | +Blynk for Business: http://www.blynk.io |
32 | 39 |
|
33 | 40 | ## Getting Started tutorials
|
34 | 41 |
|
35 | 42 | * [Blynk + JavaScript in 20 minutes (Raspberry Pi, Edison, Espruino...)](http://www.instructables.com/id/Blynk-JavaScript-in-20-minutes-Raspberry-Pi-Edison/)
|
36 | 43 | * [Raspberry Pi + DHT11/DHT22/AM2302](http://www.instructables.com/id/Raspberry-Pi-Nodejs-Blynk-App-DHT11DHT22AM2302/)
|
37 | 44 |
|
38 |
| -## Usage example: |
| 45 | +## Usage example |
39 | 46 | ```js
|
40 | 47 | var BlynkLib = require('blynk-library');
|
41 | 48 |
|
@@ -68,3 +75,19 @@ v9.on('read', function() {
|
68 | 75 | * OpenWrt + Espruino package
|
69 | 76 |
|
70 | 77 | Just install the required package and this module will do auto-detection.
|
| 78 | + |
| 79 | +__________ |
| 80 | + |
| 81 | +### Implementations for other platforms |
| 82 | +* [Arduino](https://github.com/blynkkk/blynk-library) |
| 83 | +* [Particle](https://github.com/vshymanskyy/blynk-library-spark) |
| 84 | +* [Lua, OpenWrt, NodeMCU](https://github.com/vshymanskyy/blynk-library-lua) |
| 85 | +* [Python, MicroPython](https://github.com/vshymanskyy/blynk-library-python) |
| 86 | +* [OpenWrt packages](https://github.com/vshymanskyy/blynk-library-openwrt) |
| 87 | +* [MBED](https://developer.mbed.org/users/vshymanskyy/code/Blynk/) |
| 88 | +* [Node-RED](https://www.npmjs.com/package/node-red-contrib-blynk-ws) |
| 89 | +* [LabVIEW](https://github.com/juncaofish/NI-LabVIEWInterfaceforBlynk) |
| 90 | +* [C#](https://github.com/sverrefroy/BlynkLibrary) |
| 91 | + |
| 92 | +### License |
| 93 | +This project is released under The MIT License (MIT) |
0 commit comments