|
I have a very simple USB gadget that has a switch on it to turn it on or off manually. I would like to have the ability to keep it switched on at all times, and then write software to allow me to programmatically send power to it over USB.
I envison building...
Started by AmoebaMan17 on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
See this recent to one of the pins and then just transmit the correct bit value to turn your devices on or off..
In practice to make use of this facility to turn USB devices on and off from software.
|
|
What is the best open-source library to manage X10 devices from Java?
Answer Snippets (Read the full thread at stackoverflow):
I'm pretty....
That might be worth looking at because it shows the entire setup process .
You might also want to take a look at HomeRun
Pragmatic Programmer has some information on using lava lamps as build status indicators .
Check out the Java X10 Project.
|
|
How do you make your website look good in both a standard browser and on the various mobile devices available?
Currently I am undecided between trying to make my layout resizable so that it will work for small devices, or providing a separate CSS for ...
Started by Richard on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise, I fear you'll have an interface you're asking -- "the various mobile devices"? That's a lot of devices, a lot of resolutions and a lot-held devices
<....
I would recommend the CSS approach.
devices specifically.
|
Ask your Facebook Friends
|
Using .Net (C#), how can you work with USB devices?
How can you detect USB events (connections/disconnections) and how do you communicate with devices (read/write).
Is there a native .Net solution to do this?
Started by David Thibault on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you wish to roll your own handler for USB devices, you can check out.
As mentioned by moobaa.
|
|
I have a need to find all of the writable storage devices attached to a given machine, whether or not they are mounted.
The dopey way to do this would be to try every entry in /dev that corresponds to a writable devices (hd* and sd*).
Is there a better...
Started by warren on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Modern linux systems will normally only have entries in /dev for devices that exist, so going through hda will list all the block devices....
Use libsysfs , the recommended way to query the kernel about attached devices of all kinds.
|
|
Is there a way to programmatically disable usb storage devices from working while still keeping usb ports functional for other types of devices like keyboards and mice?
Started by EddieD on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Or (to disable USB storage devices, ....
IF REMOVING.
Selecting 'Deny Permission' will prohibit the installation of USB mass storage devices.
Selecting 'Grant Permission' will allow USB mass storage devices to be installed.
Down box.
|
|
Can anyone recommend good simulation software for mobile devices? I am most interested in Nokia smart phones.
Started by Simon on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Your best bet is to use WURFL to determine what .
Only the Series 60 smart phones devices run Symbian, the lower end Series 40 devices run a proprietary OS.
To be clear, not all Nokia phones run Symbian.
|
|
What are Java's native ways of communicating with devices or ports such as LPT1, COM1, USB directly?
Started by eradicus on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
USB is extremely difficult; probably the easiest....
Native means unportable, so you have to mess with JNI or JNA if and only if the following libraries doesn't works for you:
javacomm for serial ports jUSB for USB RXTX is good one for COM and LPT ports .
|
|
Cisco newb question here. My company currently has one PIX and one VPN concentrator at our colo site. We purchased duplicate devices for redundancy. I need to copy the configs from the running devices and slap them on to the new duplicate devices. How...
Started by Citizen Chin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Then you can do copy running-config tftp: and....
Easiest one to use depends on your situation, but I'd recommend setting up a tftp server on the same network .
If you do "copy running-config ?" you'll see a list of different options for copying the config .
|
|
Hello All: Can anybody tell me how to search for available iPhone/iPod devices on a network in an iPhone application. I mean I want to connect to available iPhone/iPod devices on a network in one of my application.
Thanks in advance
Ashwani
Started by Ashwani K on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at Game Kit and GKSession ..
Search for "Bonjour" in the developer examples.
|