update better way to read file
This commit is contained in:
parent
ebcc9ac9e4
commit
8ea9ed5a4d
6
boot.py
6
boot.py
@ -6,8 +6,10 @@ from time import sleep
|
||||
print("Press Ctrl-C to stop boot script...")
|
||||
sleep(0.2)
|
||||
|
||||
# read the config file
|
||||
config = ujson.loads(open("config.json", "r").read())
|
||||
# open and parse the config file
|
||||
config = None
|
||||
with open("config.json", "r") as config_file:
|
||||
config = ujson.load(config_file)
|
||||
|
||||
# connect to WiFi
|
||||
wlan = network.WLAN(network.STA_IF)
|
||||
|
Loading…
Reference in New Issue
Block a user