We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 423f030 commit 6c69090Copy full SHA for 6c69090
LiveObjects/credentials.py
@@ -10,14 +10,14 @@ class Credentials:
10
LTE = 3
11
12
def __init__(self, net_type=NONE):
13
- self._apikey = '0ce12ecdd74343bd9360b63888033de0'
+ self._apikey = <APIKEY>
14
15
if net_type == Credentials.WIFI:
16
- self._wifi_ssid = 'EdekAD57BA'
17
- self._wifi_password = 'JANECZEK2000'
+ self._wifi_ssid = <WIFI_SSID>
+ self._wifi_password = <WIFI PASS>
18
elif net_type == Credentials.LTE:
19
- self._pin = '1155'
20
- self._apn = 'internet'
+ self._pin = <PIN>
+ self._apn = <APN_NAME>
21
22
def get_apikey(self):
23
return self._apikey
0 commit comments