Configuration by script
RELEASE NOTE
2021-11-10
V1.10.15 Download
BUG FIX, NEW FEATURES, MINOR UPDATES
- Add support for new functions to configure the WLAN interface
- setWlanByDhcp("SSID", false);
- setWlanIpAddress("SSID", false, "192.168.0.2", "255.255.255.0", "192.168.0.6", "192.168.0.1", null);
- setWlanSecurityWep("SSID", wepKey);
- setWlanSecurityPsk("SSID", key);
- Add support for user certificates installation
- Add support for CA certificates installation
- Add support for proximity sensor configuration
- setProximitySensorMaxDistance(50 X n); (n from 2 to 12 cm)
- Add support for 802.1X configuration for LAN interface with configuration script
- setLanSecurityPEAP_NONE(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityPEAP_MSCHAPV2(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityPEAP_GTC(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityPEAP_MD5(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTLS("my_tab10_identity", caCertificates, clientPrivateKey, clientCertificateChain);
- setLanSecurityTTLS_NONE(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_PAP(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_MSCHAP(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_MSCHAPV2(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_CHAP(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_GTC(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_MD5(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_EAP_MSCHAPV2(caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setLanSecurityTTLS_TLS("my_tab10_identity", caCertificates, clientPrivateKey, clientCertificateChain);
- setLanSecurityPWD("my_tab10_identity", " my_tab10_pwd");
- setLanSecurityMD5("my_tab10_identity", " my_tab10_pwd");
- setLanSecurityGTC("my_tab10_identity", " my_tab10_pwd");
- setLanSecurityMSCHAPV2("my_tab10_identity", " my_tab10_pwd");
- Add support for WEP/PSK/802.1X security configuration for WLAN interface with configuration script
- setWlanSecurityWep("my_SSID", "my_wep_key_value");
- setWlanSecurityPsk("my_SSID", "my_psk_key_value");
- setWlanSecurityPEAP_NONE("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityPEAP_MSCHAPV2("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityPEAP_GTC("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityTLS("my_SSID", caCertificates, clientPrivateKey, clientCertificateChain, "my_tab10_identity");
- setWlanSecurityTTLS_NONE("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityTTLS_PAP("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityTTLS_MSCHAP("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityTTLS_MSCHAPV2("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityTTLS_GTC("my_SSID", caCertificates, "my_tab10_identity", "my_tab10_anonymousIdentity", "my_tab10_pwd");
- setWlanSecurityPWD("my_SSID", "my_tab10_identity", "my_tab10_pwd");
- Add support for new function to set the supported languages (first is the default one)
- setSystemLocalLanguages("fr-FR,en-US,it-IT,de-DE,es-ES,ru-RU");
- Change: remove the functions
- setSystemLocalLanguage_de_DE();
- setSystemLocalLanguage_en_US();
- setSystemLocalLanguage_es_ES();
- setSystemLocalLanguage_fr_FR();
- setSystemLocalLanguage_it_IT();
- setSystemLocalLanguage_ru_RU();
- Change: remove setProximitySensorType() function
- Change: rename enableWifi() function by enableWlan()
- Change: rename disableWifi() function by disableWlan()
COMPATIBILITIES
- AOSP firmware 9.10.10 beta9 (or above) for
- TAB10s device
INFORMATION
DOCUMENTATION
For further information, refer to the TAB10s user manual.
OLD VERSIONS HISTORY
2021-04-07
V1.10.14 Download
BUG FIX, NEW FEATURES, MINOR UPDATES
- Change: the functions name to set the login credentials for the WebDAV server
- setWebserverNativeCredentialWebUIAdmin("admin", "admin");
- setWebserverNativeCredentialWebDAV("admin", "admin");
- Add support for functions to set a static IP address or an IP address allocated by DHCP for LAN interface
- setLanByDhcp();
- setLanIpAddress("192.168.0.2", "255.255.255.0", "192.168.0.6", "8.8.8.8", "8.8.8.4");
- param1: IP address
- param2: netmask
- param3: gateway
- param4: primary DNS
- param5: secondary DNS
- Add support for functions to set DeviceInfoField1 to DeviceInfoField5 variables
- setSystemDeviceInfoField1("value1");
- setSystemDeviceInfoField2("value2");
- setSystemDeviceInfoField3("value3");
- setSystemDeviceInfoField4("value4");
- setSystemDeviceInfoField5("value5");
COMPATIBILITIES
- AOSP firmware 9.10.10 beta8 (or above) for
- TAB10s device
2021-03-17
V1.10.13 Download
BUG FIX, NEW FEATURES, MINOR UPDATES
- Add support for new functions to set the login credentials for the WebDAV server
- setWebserverHttpPort("80");
- setWebserverCredentialWebUIAdmin("admin", "admin");
- setWebserverCredentialWebDAV("admin", "admin");
- Add support for new function to set the AOSP device name
- setDeviceName("TAB10s");
- Add support for new functions to set/clear the AOSP device hostname
- setHostname("TAB10s");
- clearHostname();
- Add support for new functions to change the AOSP device language
- setSystemLocalLanguage_de_DE();
- setSystemLocalLanguage_en_US();
- setSystemLocalLanguage_es_ES();
- setSystemLocalLanguage_fr_FR();
- setSystemLocalLanguage_it_IT();
- setSystemLocalLanguage_ru_RU();
- Add support for new functions to
- setNtpServer("time.android.com");
- setNtpTimeout(5000);
- Add support for new functions to activate/inactivate the RFID 125 KHz sensor
- enableRfid125KHz();
- disableRfid125KHz();
2020-10-19
V1.10.12 Download
BUG FIX, NEW FEATURES, MINOR UPDATES
- Add support for the functions:
- enableBluetooth();
- disableBluetooth();
- enableWifi();
- disableWifi();
- Change: these function are now only compatible with the AOSP firmware 9.10.10 beta5 (or above)
- getExternalStorageCopyApk();
- enableExternalStorageCopyApk();
- disableExternalStorageCopyApk();
- Change: remove showToast debug function
COMPATIBILITIES
- AOSP firmware 9.10.10 beta5 (or above) for
- TAB10s device
2020-09-16
V1.10.11 Download
BUG FIX, NEW FEATURES, MINOR UPDATES
- Add support for the functions:
- setDeviceModeNative();
- setDeviceModeKiosk();