File tree 1 file changed +5
-1
lines changed
examples/ConnectionHandlerDemo
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change
1
+ // Required for WiFiConnectionHandler
1
2
const char SECRET_SSID [] = "NETWORK NAME" ;
2
3
const char SECRET_PASS [] = "NETWORK PASSWORD" ;
3
4
5
+ // Required for GSMConnectionHandler
4
6
const char SECRET_APN [] = "MOBILE PROVIDER APN ADDRESS" ;
5
- const char SECRET_PIN [] = "0000" ;
7
+ const char SECRET_PIN [] = "0000" ; // Required for NBConnectionHandler
6
8
const char SECRET_GSM_USER [] = "GSM USERNAME" ;
7
9
const char SECRET_GSM_PASS [] = "GSM PASSWORD" ;
8
10
11
+ // Required for LoRaConnectionHandler
9
12
const char SECRET_APP_EUI [] = "APP_EUI" ;
10
13
const char SECRET_APP_KEY [] = "APP_KEY" ;
11
14
15
+ // Required for EthernetConnectionHandler (without DHCP mode)
12
16
const char SECRET_IP [] = "IP ADDRESS" ;
13
17
const char SECRET_DNS [] = "DNS ADDRESS" ;
14
18
const char SECRET_GATEWAY [] = "GATEWAY ADDRESS" ;
You can’t perform that action at this time.
0 commit comments