Skip to content

Commit 6c69090

Browse files
committed
Correction of LTE connection method for GPy.
1 parent 423f030 commit 6c69090

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

LiveObjects/credentials.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ class Credentials:
1010
LTE = 3
1111

1212
def __init__(self, net_type=NONE):
13-
self._apikey = '0ce12ecdd74343bd9360b63888033de0'
13+
self._apikey = <APIKEY>
1414

1515
if net_type == Credentials.WIFI:
16-
self._wifi_ssid = 'EdekAD57BA'
17-
self._wifi_password = 'JANECZEK2000'
16+
self._wifi_ssid = <WIFI_SSID>
17+
self._wifi_password = <WIFI PASS>
1818
elif net_type == Credentials.LTE:
19-
self._pin = '1155'
20-
self._apn = 'internet'
19+
self._pin = <PIN>
20+
self._apn = <APN_NAME>
2121

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

0 commit comments

Comments
 (0)