network.iniRequires firmware >= 3.11.50
You can set up the Morph's WiFi network using a network.ini file in the root folder of the SD card.
Values parsed from network.ini take priority over the stored WiFi config settings.
network.ini will not be changed/updated by the WiFi wizard.
network.inissid = <WIFI_SSID>
passphrase = <WIFI_PASSPHRASE>
static_ip = <STATIC_IP_ADDR>
static_gateway = <STATIC_IP_GATEWAY>
static_mask = <STATIC_IP_NETMASK>
static_dns = <STATIC_IP_DNS_SERVER>
with:
WIFI_SSID SSID of the wifi network to connect to (required)
WIFI_PASSPHRASE Passphrase/Password of the wifi network (required, can be empty by setting passphrase = )
The following values are only valid/applied, if they are all set:
STATIC_IP_ADDR IP address
STATIC_IP_GATEWAY Gateway address (usually the address of your router)
STATIC_IP_NETMASK Netmask (in most home setups: 255.255.255.0)
STATIC_IP_DNS_SERVER IP address of DNS server (usually the address of your router)
DHCP setup:
ssid = SSID
passphrase = PASSPHRASE
Static IP setup:
ssid = SSID
passphrase = PASSPHRASE
static_ip = 192.168.0.19
static_gateway = 192.168.0.1
static_mask = 255.255.255.0
static_dns = 192.168.0.1