2,942 questions
-1
votes
0
answers
34
views
Ubuntu recongnition of a 3Dconnexion mouse using spacenavd service [closed]
I'll speak about something that could possibly impact absolutely no one on stack ... So I just hope my problem is enough "generic" to be considered.
Ok, so I have this old 3D mouse, a ...
0
votes
1
answer
51
views
Android get bluetooth device new name changed in bluetooth settings
How can I get the new name of a bonded device that was changed in the Bluetooth settings? Is it possible to track this change?
I checked:
val adapter = context.getSystemService<BluetoothManager>(...
0
votes
0
answers
84
views
How to send RPC command to a related device of an asset
In thingsboards Professional Edition I have added some devices by name Grp_Rpc_1 and Grp_Rpc_2 and each of these devices have a Outbound Relation of To, relation type is Contains, From Entity type is ...
0
votes
0
answers
186
views
uncheck Allow the computer to turn off the device to save power for all devices
I'm searching for PowerShell file to search for all devices connected to the system and disable/uncheck (Allow the computer to turn off the device to save power) such:
all USB (Universal Serial Bus ...
1
vote
0
answers
629
views
nftables managing sets of ips
I'm building a new server, and thought, its 2025 and probably good time to migrate from iptables, ipset... to nftables. earlier or later it has to happen any way, right?
# uname -a
Linux starnet 6.12....
-2
votes
1
answer
220
views
Unqiue ID of an Android device that can survive Factory Reset like Fingerprint Pro App
I wanna ask how fingerprint pro app is uniquely identifying the android device even after Factory Reset.
I have tried following:
Android_ID (eg: 34c1b1e7daa2d82e)
ISSUE: resets on factory reset.
...
1
vote
0
answers
34
views
Flutter: Showing physical device model on web
I'm currently using this code:
deviceType: kIsWeb
? (PlatformWeb.getPlatformInWeb() == 'Android'
? "Android Web"
: ((PlatformWeb.getPlatformInWeb()...
-1
votes
2
answers
378
views
Flutter : check if im running on android ,ios or other in web
I want to check in Web if I'm running in Android, iOS, or other (desktop).
"Platform.isAndroid" or any other call that uses Platform works only for mobile and desktop apps.
Thanks.
-2
votes
1
answer
51
views
Flutter: Get device resoution
Is there a way to get device resolution as "$height*$width"? Any packages or just plain Flutter?
I want the device resolution: computer or phone resolution. NOT the browser or app resolution....
0
votes
0
answers
46
views
How can I reset the device after resizing the window with DirectX 9?
I have an application that uses DirectX 9. However, when I resize the window from the edge with the mouse, I cannot successfully reset the device. I am getting a D3DERR_INVALIDCALL error. I am ...
0
votes
1
answer
40
views
Draggable slider for touch devices
var reachedLast = false;
var reachedFirst = false;
jQuery("#gbar").draggable({
axis: "x",
containment: "parent",
drag: function (event, ui) {
var ...
1
vote
1
answer
96
views
Failed to create a TAP device using ioctl
#include <fcntl.h>
#include <net/if.h>
#include <linux/if_tun.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include &...
0
votes
0
answers
33
views
why use SetupDiGetDeviceRegistryProperty get SPDRP_CLASSGUID always return the same id
I use the following demo to simultaneously obtain the instanceId and guid of the device, but on my computer, all devices obtain the same SPDRP_CLASSGUID value. Why is this?
int main()
{
HDEVINFO ...
0
votes
0
answers
143
views
Get Device Name from Device Context Handle
I'm doing some work with MS Detours and one of the things I'm detouring is the Windows API GetDeviceCaps function which receives a handle to a device context as its first parameter. What I'm trying ...
1
vote
1
answer
133
views
How does Windows enumerate devices? More specifically such as video device from PCIe Card
Windows will enumerate video devices, so application can see list of devices.
I wonder how windows do that in details, so I can handle order of devices.
I expect that order of devices in the list ...