Skip to content

Configuration

Peter Buchegger edited this page Sep 5, 2021 · 5 revisions

Configuration

Callsign

Set the field callsign to your official callsign.

Example:

"callsign": "OE0ABC-10",

Wifi

Set one, more or no Wifi access point with the wifi array. If you want to use no Wifi access point just delete the wifi array.

one AP

example:

"wifi": {
	"AP": [
		{
			"SSID": "YOURSSID",
			"password": "YOURPASSWORD"
		}
	]
},

multiple APs

example:

"wifi": {
	"AP": [
		{
			"SSID": "YOURSSID",
			"password": "YOURPASSWORD"
		},
		{
			"SSID": "YOUR_OTHER_SSID",
			"password": "YOUR_OTHER_PASSWORD"
		}
	]
},
Clone this wiki locally