Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>In order to sample information from any sensor, you will need an intermediary. The Arduino uses an FTDI chip to convert UART (Serial) to USB. When you read data over this connection, you are reading it over the Serial over USB interface. My recommendation is to stick with using the Arduino or other micro controller.</p> <p>If you are really bent on reading it Directly over USB (instead of through the Serial over USB converter) you would have to implement some sort of protocol in a device that supports USB such as the <a href="http://www.ti.com/ww/en/launchpad/stellaris_head.html?DCMP=stellaris-launchpad&amp;HQS=stellaris-launchpad" rel="nofollow">Stellaris Launchpad</a> or an <a href="http://www.atmel.com/devices/atmega32u4.aspx" rel="nofollow">Atmega32U4</a> AKA <a href="http://arduino.cc/en/Main/arduinoBoardLeonardo" rel="nofollow">Arduino Lenardo</a>. You would also have to write a driver to describe how to communicate with this USB device. Unless you were able to implement it as an already known device such as a keyboard or serial port (Yep, we went full circle there). </p> <p>In short, there's no already made chip that converts Analog (or Digital) values from a sensor into something any OS would natively understand. Since <a href="http://en.wikipedia.org/wiki/Universal_Serial_Bus" rel="nofollow">USB is a protocol</a> much like <a href="http://en.wikipedia.org/wiki/Internet_Protocol" rel="nofollow">IP</a>, you're not going to be able to use discreet devices. You're going to have to use a micro-controller with a USB stack.</p> <p>Again, my advice would be to pass the sensor values over USB through the existing Serial (over USB) port. This is pretty straight forward and easily reproducible without an entire Arduino.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload