8000 ssl example path fix · blynkkk/lib-python@1e3bc4f · GitHub
[go: up one dir, main page]

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

Commit 1e3bc4f

Browse files
author
amorozenko
committed
ssl example path fix
1 parent 5f44be8 commit 1e3bc4f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pip install --user -e .
6060
```
6161

6262
#### Testing
63-
You can run unit tests for cPython version of library (blynklib_cp.py) systems using the command:
63+
You can run unit tests for cPython version of library (blynklib_cp.py) using the command:
6464

6565
python setup.py test
6666

@@ -80,7 +80,7 @@ This library supports Python2, Python3, and Micropython.
8080
- Tested to work with: Raspberry Pi (any), ESP32, ESP8266
8181

8282
##### List of available operations:
83-
- Subscribe to connect/disconnect events
83+
- Subscribe to connect/disconnect events (ssl connection available only for cPython lib)
8484
- Subscribe to read/write events of [virtual pins][blynk-vpins]
8585
- [Virtual Pin][blynk-vpins] write
8686
- [Virtual Pin][blynk-vpins] sync
@@ -115,7 +115,8 @@ blynk = blynklib.Blynk(BLYNK_AUTH)
115115

116116
# advanced options of lib init
117117
# from __future__ import print_function
118-
# blynk = blynklib.Blynk(BLYNK_AUTH, server='blynk-cloud.com', port=80, ssl_cert=None, heartbeat=10, rcv_buffer=1024, log=print)
118+
# blynk = blynklib.Blynk(BLYNK_AUTH, server='blynk-cloud.com', port=80, ssl_cert=None,
119+
# heartbeat=10, rcv_buffer=1024, log=print)
119120

120121
# Lib init with SSL socket connection
121122
# blynk = blynklib.Blynk(BLYNK_AUTH, port=443, ssl_cert='<path to local blynk server certificate>')
@@ -167,7 +168,7 @@ Examples can be found **[here][blynk-py-examples]** Check them all to get famili
167168
- [08_blynk_timer.py](https://github.com/blynkkk/lib-python/blob/master/examples/08_blynk_timer.py): How send data periodically from hardware by using **[Blynk Timer][blynktimer-doc]**
168169
- [09_sync_virtual_pin.py](https://github.com/blynkkk/lib-python/blob/master/examples/09_sync_virtual_pin.py): How to sync virtual pin states and properties
169170
- [10_rtc_sync.py](https://github.com/blynkkk/lib-python/blob/master/examples/10_rtc_sync.py): How to perform RTC sync with blynk server
170-
- [11_ssl_socket.py](https://github.com/blynkkk/lib-python/blob/master/examples/10_ssl_socket.py): SSL server connection. Feature available only fo cPython.
171+
- [11_ssl_socket.py](https://github.com/blynkkk/lib-python/blob/master/examples/11_ssl_socket.py): SSL server connection. Feature available only fo cPython.
171172

172173
##### Raspberry Pi (any):
173174
Read [Raspberry Pi guide](https://github.com/blynkkk/lib-python/tree/master/examples/raspberry) first.

0 commit comments

Comments
 (0)
0