PySide6.QtBluetooth.QBluetoothSocket¶
- class QBluetoothSocket¶
- The - QBluetoothSocketclass enables connection to a Bluetooth device running a bluetooth server. More…- Synopsis¶- Methods¶- def - __init__()
- def - abort()
- def - error()
- def - localAddress()
- def - localName()
- def - localPort()
- def - peerAddress()
- def - peerName()
- def - peerPort()
- def - setSocketError()
- def - setSocketState()
- def - socketType()
- def - state()
 - Signals¶- def - connected()
- def - disconnected()
- def - errorOccurred()
- def - stateChanged()
 - Note - This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE - Detailed Description¶- QBluetoothSocketsupports two socket types,- L2CAPand- RFCOMM.- L2CAPis a low level datagram-oriented Bluetooth socket. Android does not support- L2CAPfor socket connections.- RFCOMMis a reliable, stream-oriented socket. RFCOMM sockets emulate an RS-232 serial port.- To create a connection to a Bluetooth service, create a socket of the appropriate type and call - connectToService()passing the Bluetooth address and port number.- QBluetoothSocketwill emit the- connected()signal when the connection is established.- If the - Protocolis not supported on a platform, calling- connectToService()will emit a- UnsupportedProtocolErrorerror.- Note - QBluetoothSocketdoes not support synchronous read and write operations. Functions such as waitForReadyRead() and waitForBytesWritten() are not implemented. I/O operations should be performed using readyRead(), read() and write().- On iOS, this class cannot be used because the platform does not expose an API which may permit access to - QBluetoothSocketrelated features.- Note - On macOS Monterey (12) the socket data flow is paused when a modal dialogue is executing, or an event tracking mode is entered (for example by long-pressing a Window close button). This may change in the future releases of macOS. - class SocketState¶
- This enum describes the state of the Bluetooth socket. - Constant - Description - QBluetoothSocket.SocketState.UnconnectedState - Socket is not connected. - QBluetoothSocket.SocketState.ServiceLookupState - Socket is querying connection parameters. - QBluetoothSocket.SocketState.ConnectingState - Socket is attempting to connect to a device. - QBluetoothSocket.SocketState.ConnectedState - Socket is connected to a device. - QBluetoothSocket.SocketState.BoundState - Socket is bound to a local address and port. - QBluetoothSocket.SocketState.ClosingState - Socket is connected and will be closed once all pending data is written to the socket. - QBluetoothSocket.SocketState.ListeningState - Socket is listening for incoming connections. 
 - class SocketError¶
- This enum describes Bluetooth socket error types. - Constant - Description - QBluetoothSocket.SocketError.UnknownSocketError - An unknown error has occurred. - QBluetoothSocket.SocketError.NoSocketError - No error. Used for testing. - QBluetoothSocket.SocketError.HostNotFoundError - Could not find the remote host. - QBluetoothSocket.SocketError.ServiceNotFoundError - Could not find the service UUID on remote host. - QBluetoothSocket.SocketError.NetworkError - Attempt to read or write from socket returned an error - QBluetoothSocket.SocketError.UnsupportedProtocolError - The - Protocolis not supported on this platform.- QBluetoothSocket.SocketError.OperationError - An operation was attempted while the socket was in a state that did not permit it. - QBluetoothSocket.SocketError.RemoteHostClosedError - The remote host closed the connection. - QBluetoothSocket.SocketError.MissingPermissionsError - The operating system requests permissions which were not granted by the user. 
 - Constructs a Bluetooth socket with - parent.- Constructs a Bluetooth socket of - socketTypetype, with- parent.- abort()¶
 - Aborts the current connection and resets the socket. Unlike - disconnectFromService(), this function immediately closes the socket, discarding any pending data in the write buffer.- Note - On Android, aborting the socket requires asynchronous interaction with Android threads. Therefore the associated - disconnected()and- stateChanged()signals are delayed until the threads have finished the closure.- See also - disconnectFromService()- close()- connectToService(service[, openMode=QIODeviceBase.OpenModeFlag.ReadWrite])¶
- Parameters:
- service – - QBluetoothServiceInfo
- openMode – Combination of - OpenModeFlag
 
 
 - Attempts to connect to the service described by - service.- The socket is opened in the given - openMode. The- socketType()is ignored if- servicespecifies a differing- socketProtocol().- The socket first enters - ConnectingStateand attempts to connect to the device providing- service. If a connection is established,- QBluetoothSocketenters- ConnectedStateand emits- connected().- At any point, the socket can emit - errorOccurred()to signal that an error occurred.- Note that most platforms require a pairing prior to connecting to the remote device. Otherwise the connection process may fail. - On Android, only RFCOMM connections are possible. This function ignores any socket protocol indicator and assumes RFCOMM. - See also - connectToService(address, uuid[, mode=QIODeviceBase.OpenModeFlag.ReadWrite])
- Parameters:
- address – - QBluetoothAddress
- uuid – - ServiceClassUuid
- mode – Combination of - OpenModeFlag
 
 
 - connectToService(address, uuid[, openMode=QIODeviceBase.OpenModeFlag.ReadWrite])
- Parameters:
- address – - QBluetoothAddress
- uuid – - QBluetoothUuid
- openMode – Combination of - OpenModeFlag
 
 
 - Attempts to make a connection to the service identified by - uuidon the device with address- address.- The socket is opened in the given - openMode.- For BlueZ, the socket first enters the - ServiceLookupStateand queries the connection parameters for- uuid. If the service parameters are successfully retrieved the socket enters- ConnectingState, and attempts to connect to- address. If a connection is established,- QBluetoothSocketenters- ConnectedStateand emits- connected().- On Android, the service connection can directly be established using the UUID of the remote service. Therefore the platform does not require the - ServiceLookupStateand- socketType()is always set to- RfcommProtocol.- At any point, the socket can emit - errorOccurred()to signal that an error occurred.- Note that most platforms require a pairing prior to connecting to the remote device. Otherwise the connection process may fail. - See also - connectToService(address, port[, openMode=QIODeviceBase.OpenModeFlag.ReadWrite])
- Parameters:
- address – - QBluetoothAddress
- port – int 
- openMode – Combination of - OpenModeFlag
 
 
 - Attempts to make a connection with - addresson the given- port.- The socket is opened in the given - openMode.- The socket first enters - ConnectingState, and attempts to connect to- address. If a connection is established,- QBluetoothSocketenters- ConnectedStateand emits- connected().- At any point, the socket can emit - errorOccurred()to signal that an error occurred.- On Android and BlueZ (version 5.46 or above), a connection to a service can not be established using a port. Calling this function will emit a - ServiceNotFoundError.- Note that most platforms require a pairing prior to connecting to the remote device. Otherwise the connection process may fail. - See also - connected()¶
 - This signal is emitted when a connection is established. - See also - disconnectFromService()¶
 - Attempts to close the socket. If there is pending data waiting to be written - QBluetoothSocketwill enter- ClosingStateand wait until all data has been written. Eventually, it will enter- UnconnectedStateand emit the- disconnected()signal.- See also - disconnected()¶
 - This signal is emitted when the socket is disconnected. - See also - doDeviceDiscovery(service, openMode)¶
- Parameters:
- service – - QBluetoothServiceInfo
- openMode – Combination of - OpenModeFlag
 
 
 - Start device discovery for - serviceand open the socket with- openMode. If the socket is created with a service uuid device address, use service discovery to find the port number to connect to.- error()¶
- Return type:
 
 - Returns the last error. - errorOccurred(error)¶
- Parameters:
- error – - SocketError
 
 - This signal is emitted when an - erroroccurs.- See also - localAddress()¶
- Return type:
 
 - Returns the address of the local device. - Although some platforms may differ the socket must generally be connected to guarantee the return of a valid address. In particular, this is true when dealing with platforms that support multiple local Bluetooth adapters. - localName()¶
- Return type:
- str 
 
 - Returns the name of the local device. - Although some platforms may differ the socket must generally be connected to guarantee the return of a valid name. In particular, this is true when dealing with platforms that support multiple local Bluetooth adapters. - localPort()¶
- Return type:
- int 
 
 - Returns the port number of the local socket if available, otherwise returns 0. Although some platforms may differ the socket must generally be connected to guarantee the return of a valid port number. - On Android and macOS, this feature is not supported and returns 0. - peerAddress()¶
- Return type:
 
 - Returns the address of the peer device. - peerName()¶
- Return type:
- str 
 
 - Returns the name of the peer device. - peerPort()¶
- Return type:
- int 
 
 - Return the port number of the peer socket if available, otherwise returns 0. On Android, this feature is not supported. - Returns the security parameters used for the initial connection attempt. - The security parameters may be renegotiated between the two parties during or after the connection has been established. If such a change happens it is not reflected in the value of this flag. - On macOS, this flag is always set to - Secure.- See also - Sets the preferred security parameter for the connection attempt to - flags. This value is incorporated when calling- connectToService(). Therefore it is required to reconnect to change this parameter for an existing connection.- On Bluez this property is set to - Authorizationby default.- On macOS, this value is ignored as the platform does not permit access to the security parameter of the socket. By default the platform prefers secure/encrypted connections though and therefore this function always returns - Secure.- Android only supports two levels of security (secure and non-secure). If this flag is set to - NoSecuritythe socket object will not employ any authentication or encryption. Any other security flag combination will trigger a secure Bluetooth connection. This flag is set to- Secureby default.- Note - A secure connection requires a pairing between the two devices. On some platforms, the pairing is automatically initiated during the establishment of the connection. Other platforms require the application to manually trigger the pairing before attempting to connect. - See also - setSocketDescriptor(socketDescriptor, socketType[, socketState=QBluetoothSocket.SocketState.ConnectedState[, openMode=QIODeviceBase.OpenModeFlag.ReadWrite]])¶
- Parameters:
- socketDescriptor – int 
- socketType – - Protocol
- socketState – - SocketState
- openMode – Combination of - OpenModeFlag
 
- Return type:
- bool 
 
 - Sets the socket to use - socketDescriptorwith a type of- socketType, which is in state- socketState, and mode- openMode.- The socket descriptor is owned by the - QBluetoothSocketinstance and may be closed once finished.- Returns - trueon success.- See also - setSocketError(error)¶
- Parameters:
- error – - SocketError
 
 - Sets the type of error that last occurred to - error_.- setSocketState(state)¶
- Parameters:
- state – - SocketState
 
 - Sets the socket state to - state.- socketDescriptor()¶
- Return type:
- int 
 
 - Returns the platform-specific socket descriptor, if available. This function returns -1 if the descriptor is not available or an error has occurred. - See also - Returns the socket type. The socket automatically adjusts to the protocol offered by the remote service. - Android only support - RFCOMMbased sockets.- state()¶
- Return type:
 
 - Returns the current state of the socket. - stateChanged(state)¶
- Parameters:
- state – - SocketState
 
 - This signal is emitted when the socket state changes to - state.- See also