Skip to content

Commit b4ab859

Browse files
committed
Adding '' in 'credentials.py'. Small 'README.md' correction.
1 parent 12a56cb commit b4ab859

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

LiveObjects/credentials.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ class Credentials:
1010

1111
def __init__(self, net_type):
1212

13-
self._apikey = <APIKEY>
13+
self._apikey = '<APIKEY>'
1414
self._net_type = net_type
1515

1616
if net_type == LiveObjects.BoardsInterface.WIFI:
17-
self._wifi_ssid = <WIFI_SSID>
18-
self._wifi_password = <WIFI_PASS>
17+
self._wifi_ssid = '<WIFI_SSID>'
18+
self._wifi_password = '<WIFI_PASS>'
1919
elif net_type == LiveObjects.BoardsInterface.LTE:
20-
self._pin = <PIN>
21-
self._apn = <APN_NAME>
20+
self._pin = '<PIN>'
21+
self._apn = '<APN>'
2222

2323
def get_apikey(self):
2424
return self._apikey

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ If your board needs function supporting its equipment you need to put it in this
236236

237237
Change **\<APIKEY\>** in `credentials.py` to one you generated.\
238238
Change **\<WIFI_SSID\>** and **\<WIFI_PASS\>** suitable to your Wi-Fi or
239-
change **\<PIN\>** and **\<APN_NAME\>** suitable to your SIM card.
239+
change **\<PIN\>** and **\<APN\>** suitable to your SIM card.
240240

241241
2. Copy files into device
242242
```Shell

0 commit comments

Comments
 (0)