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

Commit 7e875f0

Browse files
committed
Update Readme
1 parent aa6029a commit 7e875f0

File tree

1 file changed

+60
-10
lines changed

1 file changed

+60
-10
lines changed

README.md

Lines changed: 60 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,40 @@
22

33
**Warning:** Work in progress. Code reviews and contributions are more than welcome!
44

5-
Supports:
6-
- Python 2 and Python 3
7-
- Windows, Linux, OSX
8-
- Micropython (PyCom WiPy, LoPy)
9-
- Virtual pins (see examples)
5+
[![GitHub version](https://img.shields.io/github/release/vshymanskyy/blynk-library-python.svg)](https://github.com/vshymanskyy/blynk-library-python/releases/latest)
6+
[![GitHub download](https://img.shields.io/github/downloads/vshymanskyy/blynk-library-python/total.svg)](https://github.com/vshymanskyy/blynk-library-python/releases/latest)
7+
[![GitHub stars](https://img.shields.io/github/stars/vshymanskyy/blynk-library-python.svg)](https://github.com/vshymanskyy/blynk-library-python/stargazers)
8+
[![GitHub issues](https://img.shields.io/github/issues/vshymanskyy/blynk-library-python.svg)](https://github.com/vshymanskyy/blynk-library-python/issues)
9+
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/vshymanskyy/blynk-library-python/blob/master/LICENSE)
1010

11-
## Installation
11+
If you like **Blynk** - give it a star, or fork it and contribute!
12+
[![GitHub stars](https://img.shields.io/github/stars/blynkkk/blynk-library.svg?style=social&label=Star)](https://github.com/blynkkk/blynk-library/stargazers)
13+
[![GitHub forks](https://img.shields.io/github/forks/blynkkk/blynk-library.svg?style=social&label=Fork)](https://github.com/blynkkk/blynk-library/network)
14+
__________
1215

13-
```sh
14-
pip install blynk-library-python
15-
```
16+
## What is Blynk?
17+
Blynk provides iOS and Android apps to control any hardware over the Internet or directly using Bluetooth.
18+
You can easily build graphic interfaces for all your projects by simply dragging and dropping widgets, right on your smartphone.
19+
Blynk is the most popular IoT platform used by design studios, makers, educators, and equipment vendors all over the world.
20+
21+
![Dashboard](https://github.com/blynkkk/blynk-server/blob/master/docs/overview/dash.png)
22+
![Widgets Box](https://github.com/blynkkk/blynk-server/blob/master/docs/overview/widgets_box.png)
23+
24+
## Download
25+
26+
**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)**
1627

17-
## Usage
28+
**Blynk [Server](https://github.com/blynkkk/blynk-server)**
29+
30+
## Documentation
31+
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)
32+
Help Center: http://help.blynk.cc
33+
Documentation: http://docs.blynk.cc/#blynk-firmware
34+
Community Forum: http://community.blynk.cc
35+
Examples Browser: http://examples.blynk.cc
36+
Blynk for Business: http://www.blynk.io
37+
38+
## Usage example
1839

1940
```py
2041
import BlynkLib
@@ -39,6 +60,19 @@ def my_read_handler():
3960
blynk.run()
4061
```
4162

63+
## Installation
64+
65+
```sh
66+
pip install blynk-library-python
67+
```
68+
69+
## Features
70+
- Python 2 and Python 3
71+
- Windows, Linux, OSX
72+
- Micropython (PyCom WiPy, LoPy)
73+
- Virtual pins (see examples)
74+
75+
4276
## Notes
4377

4478
For some devices (like PyCom WiPy) you need to setup internet connection first:
@@ -52,3 +86,19 @@ wlan = WLAN(mode=WLAN.STA)
5286
wlan.connect(WIFI_SSID, auth=WIFI_AUTH, timeout=5000)
5387
print(wlan.ifconfig())
5488
```
89+
90+
__________
91+
92+
### Implementations for other platforms
93+
* [Arduino](https://github.com/blynkkk/blynk-library)
94+
* [Particle](https://github.com/vshymanskyy/blynk-library-spark)
95+
* [Lua, OpenWrt, NodeMCU](https://github.com/vshymanskyy/blynk-library-python)
96+
* [Node.js, Espruino, Browsers](https://github.com/vshymanskyy/blynk-library-js)
97+
* [OpenWrt packages](https://github.com/vshymanskyy/blynk-library-openwrt)
98+
* [MBED](https://developer.mbed.org/users/vshymanskyy/code/Blynk/)
99+
* [Node-RED](https://www.npmjs.com/package/node-red-contrib-blynk-ws)
100+
* [LabVIEW](https://github.com/juncaofish/NI-LabVIEWInterfaceforBlynk)
101+
* [C#](https://github.com/sverrefroy/BlynkLibrary)
102+
103+
### License
104+
This project is released under The MIT License (MIT)

0 commit comments

Comments
 (0)