8000 Add basic SSL support for micropython by fgervais · Pull Request #40 · blynkkk/lib-python · 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.

Add basic SSL support for micropython #40

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add forgotten connection access for RECONNECT_SLEEP
  • Loading branch information
fgervais committed Jan 12, 2021
commit ecbaa625821746d403090c8fd7e18e294f27d7c4
2 changes: 1 addition & 1 deletion blynklib_mp.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def disconnect(self, err_msg=None):
self.connection._state = self.connection.DISCONNECTED
if err_msg:
self.connection.log('[ERROR]: {}\nConnection closed'.format(err_msg))
time.sleep(self.RECONNECT_SLEEP)
time.sleep(self.connection.RECONNECT_SLEEP)

def virtual_write(self, v_pin, *val):
return self.connection.send(self.connection.virtual_write_msg(v_pin, *val))
Expand Down
0