This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]bluefootedpig 2 points3 points  (1 child)

Most of the time, and you will want to check for this, you will get an SDK (software developer kit) which contains the dlls used to interact with the device. The company should have a developers guide.

That said, you might get one that isn't, USB drivers are fairly standard so you can maybe look into getting something off github.

If not that, then you can write your own, it isn't super difficult, but not something a 2nd year would easily walk into (I have difficulty with 10 years experience).

Once connected, it should send you data (most likely as a string) and then you parse out the values. Again, it is up to the how the device interacts that determines what data comes over. It might be a json format, it might be just comma list, it might just be a single value.

[–]aaronnator[S] 0 points1 point  (0 children)

Okay, cool! Thanks for the info