8000 Update README.md · fgervais/lib-python@2c5db2f · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c5db2f

Browse files
authored
Update README.md
1 parent b6641e2 commit 2c5db2f

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ BLYNK_AUTH = '<YourAuthToken>' #insert your Auth Token here
110110
import blynklib
111111

112112
BLYNK_AUTH = '<YourAuthToken>' #insert your Auth Token here
113-
blynk = blynklib.Blynk(BLYNK_AUTH) # base library initialization
113+
# base lib init
114+
blynk = blynklib.Blynk(BLYNK_AUTH)
114115

115116
# advanced options of lib init
116117
# from __future__ import print_function
@@ -151,24 +152,24 @@ while True:
151152
Examples can be found **[here][blynk-py-examples]** Check them all to get familiar with main Blynk API features.
152153

153154
##### Core operations:
154-
- 01_write_virtual_pin.py (how to write to Virtual Pin )
155-
- 02_read_virtual_pin.py (how to read Virtual Pin )
156-
- 03_connect_disconnect.py (connection management)
157-
- 04_email.py(how to send send email and push notifications)
158-
- 05_set_property_notify.py (how to change some of widget UI properties)
159-
- 06_terminal_widget.py (communication between hardware and app through Terminal widget)
160-
- 07_tweet_and_logging.py (how to post to Twitter and log events from your hardware)
155+
- [01_write_virtual_pin.py](https://github.com/blynkkk/lib-python/blob/master/examples/01_write_virtual_pin.py): How to read incoming data from Blynk app to Virtual Pin and use it in your code
156+
- [02_read_virtual_pin.py](https://github.com/blynkkk/lib-python/blob/master/examples/02_read_virtual_pin.py): How to update value on Virtual Pin
157+
- [03_connect_disconnect.py](https://github.com/blynkkk/lib-python/blob/master/examples/03_connect_disconnect.py): Managing connection with Blynk Cloud
158+
- [04_email.py](https://github.com/blynkkk/lib-python/blob/master/examples/04_email.py): How to send send email and push notifications from your hardware
159+
- [05_set_property_notify.py](https://github.com/blynkkk/lib-python/blob/master/examples/05_set_property_notify.py): How to change some of widget UI properties like colors, labels, etc
160+
- [06_terminal_widget.py](https://github.com/blynkkk/lib-python/blob/master/examples/06_terminal_widget.py): Communication between hardware and app through Terminal widget)
161+
- [07_tweet_and_logging.py](https://github.com/blynkkk/lib-python/blob/master/examples/07_tweet_and_logging.py): How to post to Twitter and log events from your hardware
161162

162163
##### Raspberry Pi (any):
163-
- (01_weather_station_pi3b.py)[https://github.com/blynkkk/lib-python/tree/master/examples/raspberry] Connect DHT22; BMP180 sensors and send data to Blynk app
164+
- 01_weather_station_pi3b.py (connect DHT22; BMP180 sensors and send data to Blynk app)
164165

165166
##### ESP32
166-
- [01_touch_button.py](https://github.com/blynkkk/lib-python/blob/master/examples/esp32/01_touch_button.py) Connect TTP223B touch sensor to ESP32 and react to touch
167-
- [02_terminal_cli.py](https://github.com/blynkkk/lib-python/blob/master/examples/esp32/02_terminal_cli.py) Communication between ESP32 hardware and app through Terminal widget
168-
- [03_temperature_humidity_dht22.py](https://github.com/blynkkk/lib-python/blob/master/examples/esp32/03_temperature_humidity_dht22.py) Connect DHT22 sensor to ESP32 and send data to Blynk app
167+
- 01_touch_button.py (connect TTP223B touch sensor to ESP32 and react to touch)
168+
- 02_terminal_cli.py (communication between ESP32 hardware and app through Terminal widget)
169+
- 03_temperature_humidity_dht22.py (connect DHT22 sensor and send data to Blynk app)
169170

170171
##### ESP8266
171-
- [01_potentiometer.py](https://github.com/blynkkk/lib-python/blob/master/examples/esp8266/01_potentiometer.py) Cconnect potentiometer to ESP8266 and send resistance value to the app
172+
- 01_potentiometer.py (connect slide potentiometer to ESP8266 and get resistance values)
172173

173174

174175

0 commit comments

Comments
 (0)
0