How to Set the Terminal's Communication Mode: Difference between revisions

From wizarPOS
No edit summary
No edit summary
Line 1: Line 1:
With [http://ftp.wizarpos.com/advanceSDK/ChooseNetworkType.zip the demo], you can select the communication mode for this communication or for all the communication of the application.
This guide provides instructions on how to select and set the communication mode for a terminal, either for a single instance or for all communications within an application.
 
== User Interface Settings in the Demo ==
The user interface settings in demo are described as follows:
[http://ftp.wizarpos.com/advanceSDK/ChooseNetworkType.zip The demo] allows you to choose from various communication modes, each catering to different connectivity preferences. The available options are:
* Default, the application uses the system's default communication model
* '''Default:''' The application adheres to the system's default communication model.
* WIFI, the application uses WiFi
* '''WIFI:''' The application prioritizes the use of WiFi for communication.
* ETHERNET, the application uses Ethernet
* '''ETHERNET:''' Ethernet is used as the primary communication channel.
* MOBILE, the application uses Mobile traffic
* '''MOBILE:''' Mobile data is used for communication.
* ONLYWIFI, only use WiFi at this time.
* '''ONLYWIFI:''' Restricts communication to WiFi only for the current session.
* ONLYMOBILE, only use Mobile traffic at this time.
* '''ONLYMOBILE:''' Limits communication to mobile data only for the current session.
* ONLYETHERNET, only use Ethernet at this time.
* '''ONLYETHERNET:''' Uses only Ethernet for the current communication session.
 
== Additional Reference ==
See also [https://developer.android.com/reference/android/net/ConnectivityManager#CONNECTIVITY_ACTION ConnectivityManager#CONNECTIVITY_ACTION(from Android developer)]
* For more in-depth technical details, refer to the [https://developer.android.com/reference/android/net/ConnectivityManager#CONNECTIVITY_ACTION ConnectivityManager#CONNECTIVITY_ACTION(from Android developer)] documentation available on the Android Developer website.

Revision as of 17:36, 4 January 2024

This guide provides instructions on how to select and set the communication mode for a terminal, either for a single instance or for all communications within an application.

User Interface Settings in the Demo

The demo allows you to choose from various communication modes, each catering to different connectivity preferences. The available options are:

  • Default: The application adheres to the system's default communication model.
  • WIFI: The application prioritizes the use of WiFi for communication.
  • ETHERNET: Ethernet is used as the primary communication channel.
  • MOBILE: Mobile data is used for communication.
  • ONLYWIFI: Restricts communication to WiFi only for the current session.
  • ONLYMOBILE: Limits communication to mobile data only for the current session.
  • ONLYETHERNET: Uses only Ethernet for the current communication session.

Additional Reference