Skip to content

Commit

Permalink
Update Discord Web Scrape Example with Connection Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDevon3 committed Mar 17, 2024
1 parent 44dff09 commit 339294d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/wifi/expanded/requests_wifi_api_fitbit.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ def time_calc(input_time):
top_nvm = microcontroller.nvm[0:64].decode()
nvm_bytes = microcontroller.nvm[0:64]
top_nvm_3bytes = nvm_bytes[0:3]
print(f"Top NVM Length: {len(top_nvm)}")
print(f"Top NVM: {top_nvm}")
print(f"Top NVM bytes: {top_nvm_3bytes}")
if DEBUG:
print(f"Top NVM Length: {len(top_nvm)}")
print(f"Top NVM: {top_nvm}")
print(f"Top NVM bytes: {top_nvm_3bytes}")
if RESET_NVM:
microcontroller.nvm[0:64] = bytearray(b"\x00" * 64)
if top_nvm_3bytes == b"\x00\x00\x00":
Expand Down

0 comments on commit 339294d

Please sign in to comment.