Tizen Setup
Tizen devices running our Core App cannot currently connect to Enterprise Wi-Fi. For now, you can only connect to Open or WPA2-Personal networks.
Supported WPA2-Personal / WPA2-Enterprise authentication methods
| Core App Version | Front-Applet Version | OPEN | WPA2-Personal | EAP-TLS | EAP-TTLS | PEAP (MSCHAPv2) | PEAP (GTC) |
|---|---|---|---|---|---|---|---|
≤2.11.1 | ≤8.5.1 | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ |
Connecting to WPA2-Personal networks
To connect to a WPA2-Personal network on a Tizen device, use the Wi-Fi JS API SDK to connect programmatically from your applet or script. The example below shows how to connect using the JS API SDK.
import sos from '@signageos/front-applet';
// Connect to a WPA2-Personal network
await sos.management.wifi.connect('MyPersonalNetwork', 'wifi_password', {
securityType: 'WPA2_WPA_MIXED',
});