You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -110,8 +110,7 @@ BLYNK_AUTH = '<YourAuthToken>' #insert your Auth Token here
110
110
import blynklib
111
111
112
112
BLYNK_AUTH='<YourAuthToken>'#insert your Auth Token here
113
-
# base lib init
114
-
blynk = blynklib.Blynk(BLYNK_AUTH)
113
+
blynk = blynklib.Blynk(BLYNK_AUTH) # base library initialization
115
114
116
115
# advanced options of lib init
117
116
# from __future__ import print_function
@@ -161,15 +160,15 @@ Examples can be found **[here][blynk-py-examples]** Check them all to get famili
161
160
- 07_tweet_and_logging.py (how to post to Twitter and log events from your hardware)
162
161
163
162
##### Raspberry Pi (any):
164
-
- 01_weather_station_pi3b.py (connect DHT22; BMP180 sensors and send data to Blynk app)
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
165
164
166
165
##### ESP32
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)
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
170
169
171
170
##### ESP8266
172
-
- 01_potentiometer.py (connect slide potentiometer to ESP8266 and get resistance values)
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
0 commit comments