B4A Question Hotspot client details (client scan) - Erel (first post)    Oct 26, 2017 There is no simple way to get this information. Enterprise level routers support the SNMP protocol. I don't think that there is any standard way to do it with home routers.
If the other devices run your app then you can use UDP to discover them (https://www.b4x.com/search?query=UDP+discover).... B4A Question Identifying a device connected to a router - Erel (first post)    Jul 21, 2019 B4A Bridge solution is similar to this one: https://www.b4x.com/android/forum/threads/mqtt-chat-with-auto-discovery.75713/#content
(Without the MQTT part, only the usage of UDP to discover devices)... B4A Class [IoT] BeaconParser - Discover iBeacons and Eddystone beacons - Erel    Sep 20, 2018   (12 reactions) beacon1 <> Null Then 'a beacon was discovered. 'find the beacon type based... B4A Question Detecting another device in a network and do some transmissions between the devices - Erel (first post)    Jul 30, 2023 1. Network communication: Network + AsyncStreams + B4XSerializator 2. Discover devices using UDP: https://www.b4x.com/android/forum/threads/mqtt-chat-with-auto-discovery.75713/#content... B4i Question UDP auto discovery - Erel (first post)    Aug 2, 2017 There is no relation between MQTT and UDP discovery. It is just an example that uses UDP to discover the "mqtt server". Next I saw a posting in which Erel says that to convert this to ios you only need to copy the sub GetBroadcastAddress to your ios app This is not what I said... Finding the broadcast address: B4A: https://www.b4x.com/android/forum/threads/75694/#content B4J / B4i: UDPSocket.GetBroadcastAddress You should use UDPSocket.GetBroadcastAddress from the Network library... B4A Question Mqtt Chat example: How to make it discover hotspot server - Erel (first post)    Feb 11, 2021   (1 reaction) The UDP based auto discovery will not help with this. It discovers the server when both are already connected to the same network.... B4A Code Snippet [B4X] Audio Streaming UDP - Star-Dust    Sep 21, 2022   (20 reactions) Based on this @Erel code that simulated a Walkie Talkie, I developed a system for streaming audio between Android and Desktop devices with UDP. You can connect with multiple devices. I found that some routers lose a lot of UDP packets (a high percentage) and the sound is not uniform. If you notice a discontinuous and disturbed sound, it could be the router system. You can find the version that uses the TCP protocol in this link Note: The B4J version requires the AudioRecord library... B4A Question Voice Recognition and UDP - max123    May 19, 2023 Hi all,
in my project I have a working UDP socket that do some things.
Now I want use Voice Recognition, then send the result string over UDP socket, but for some strange reasons the
already initialized UDP socket is Null in the Voice Recognition _Result event.
The application will not crash...) 'DATA,HOST,PortOut ' Inizializza il pacchetto in invio
udp.Send... B4R Tutorial ESP8266 + UDP + BMP180 = Simple weather station - Erel    Aug 22, 2016   (12 reactions)   tags: B4R This is an example of how UDP can be used to broadcast the current temperature and pressure to one or more clients. The nice thing about it is that there is no server involved. The ESP8266 just sends the packets to the broadcast address. https://www.b4x.com/basic4android/images/SS-2016-08-22_11.20.22.jpg RandomAccessFile is used to create the packets. B4R doubles are 4 bytes (equivalent to B4X floats). It is tempting to send the data as a string. However it is more efficient and actually... B4A Tutorial MQTT Chat with Auto Discovery - Erel    Jan 30, 2017   (28 reactions)   tags: B4a listen to UDP packets on port 51049. The server broadcasts its ip address every second. It is done by sending a UDP packet to the broadcast address. The result is that any device listening on the correct... the server ip address is discovered (and the name field is not empty). Finding the broadcast address... Page: 1   2   3   4   5   |