Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
cd Desktop
[jan@alpha-site Desktop]$ ./hidtest /dev/usb/hiddev0
hiddev open: No such file or directory
[jan@alpha-site Desktop]$ ls -l /dev/usb/hid*
ls: cannot access /dev/usb/hid*: No such file or directory
[jan@alpha-site Desktop]$ lsusb
bash: lsusb: command not found
hid.c and hidtest exist. Should I be doing this as root? I had a problem a little earlier when I tried to copy/paste post#6. The browser crashed, bug-report popped-up. I restarted the system and then the copy/paste started working again.
It seems that you successfully compiled the program so you're very close from actually getting it to work. I checked out the fedora core hiddev support and the device should be there by default but the path to it is a bit different. I used Slackware in my example. Try using /dev/hiddev0 instead of /dev/usb/hiddev0. That should work. Also, please post output from lsusb command and try ls -l /dev/hid* this time. Make sure the scale is connected.
I agree that you probably do have a SourceForge entry.
The only remaining "trick" is the USB bit. The piece you probably want to read more about is called hotplug. When you plug-in a device or remove it, the hotplug daemon looks-up information to find out what to do. (In your case, specifically look at /etc/hotplug/usb*.)
In your case, this device really isn't privileged and probably won't be used by more than one client, so all you'd really like to do here is to have it set up a nice entry in /dev/input so that your user-application can expect to find the device by a nice name such as pitney_bowes_xyzzy_scale.
Beyond that, no system-level driver-stuff is needed: you can read and write to the device as it is. A short user-level library might be a nice touch, with routines like "is there a device attached," "wait so-many seconds for device to be attached," "wait so-many seconds to read the weight," and so on.
Actually the Pitney-Bowes scale has been working for me for quite a while. I read directly from the raw hiddev as the protocol is trivial - just like I demonstrated in the example. It would be good if hhhansen posted his modifications to the code for Radio Shack scale then the people like yonnieboy wouldn't have to struggle again. We could add the scale recognition and support for different USB scales over unified protocol. I'll open the SF project.
Actually the Pitney-Bowes scale has been working for me for quite a while. I read directly from the raw hiddev as the protocol is trivial - just like I demonstrated in the example. It would be good if hhhansen posted his modifications to the code for Radio Shack scale then the people like yonnieboy wouldn't have to struggle again. We could add the scale recognition and support for different USB scales over unified protocol. I'll open the SF project.
Ok, sorry for not having responded before. I will post my mods as soon as possible. Krizz, thanks for being so helpful.
I took your change as meaning the line in the file hid.c and changed it too. After altering the file I clicked on hidtest and nothing seemed to happen. So then I did the above from the terminal. I can't find the process using ps -ef so I can't kill it and try over.
after reboot hiddev is still open permission denied
Last edited by yonnieboy; 05-06-2008 at 03:20 AM.
Reason: need to add reboot info.
ktop]# hidtest
bash: hidtest: command not found
[root@alpha-site Desktop]# ./hidtest
usage: ./hidtest hiddevice - probably /dev/hiddev0
[root@alpha-site Desktop]# ./hidtest /dev/hiddev0
RadioShack Corporation USB Electronic Scale ready...
Reading values ..
exit
The display just sat there at reading values, I put envelopes on and my glasses, and my finger, no changes. So I tried exit, then q, then escape, no effect. So I closed the terminal. Doubleclicking the hidtest icon as root didn't appear to do anything either. But it apparently does something as root!
I wrote some terribly sloppy code that seems to mostly work with the "Radio Shack USB Scale"
(ID 2233:6323 RadioShack Corporation USB Electronic Scale)
Even though it's been a while since anyone posted this thread helped me initially and is the first result in google for "linux usb scale"
The places where it is divided by 2.55 may be further fine-tuned by changing that number. If someone finds a better value please reply, as I don't have a comparison scale handy.
That is, if it's possible to make sense of this
Code:
#include <stdlib.h>
#include <stdio.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <asm/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <linux/hiddev.h>
#define EV_NUM 8
int get_input(int argc, char **argv,int input_type) {
int fd = -1;
int i;
struct hiddev_event ev[EV_NUM];
char name[100];
int input_small;
int input_large;
if (argc != 2) {
fprintf(stderr, "usage: %s hiddevice - probably /dev/usb/hiddev0\n", argv[0]);
exit(1);
}
if ((fd = open(argv[1], O_RDONLY)) < 0) {
perror("hiddev open");
exit(1);
}
ioctl(fd, HIDIOCGNAME(100), name);
read(fd, ev, sizeof(struct hiddev_event) * EV_NUM);
input_large = ev[6].value;
input_small = ev[7].value;
close(fd);
if (input_type == 1) {return input_small;}
if (input_type == 0) {return input_large;}
}
int tare(int input[5]) {
int input_small = 1;
int input_large = 0;
int i;
int largest_value = input[0];
//Just returns the largest value from the array.. for now.
for ( i = 0; i < 5; i++)
{
if (largest_value > input[i]) {largest_value = input[i];}
}
//printf("%i Largest Value?\n",largest_value);
return largest_value;
}
int main (int argc, char **argv) {
int input_small = 1; // Just for easy viewing
int input_large = 0; // Input selection
int small_array[5]; // Array of values to be tared
int large_array[5]; //
unsigned char base_small;// Tared Values to work with
unsigned char base_large;//
unsigned char weight_small;
unsigned char weight_large;
int final_weight;
int last_status = 0;
int i;
// Get Input
for ( i = 0; i < 5; i++){
small_array[i] = get_input(argc,argv,input_small);
large_array[i] = get_input(argc,argv,input_large);
}
// Basic Tare
base_small = tare(small_array);
base_large = tare(large_array);
printf("Tared! Ready to Weigh\n");
while (1) {
weight_small = get_input(argc,argv,input_small);
weight_large = get_input(argc,argv,input_large);
if (weight_large < (base_large + 1)) { weight_large = 0; }
else { weight_large = (((weight_large - (base_large + 1)) * 100) + 25); }
if (weight_large == 0)
{
if (weight_small >= base_small){
weight_small = (((weight_small) - (base_small)) / 2.55);}
else
{weight_small = 0;}
}
if (weight_large > 0) {
weight_small = ((weight_small) / 2.55); }
final_weight = (weight_large + weight_small);
if (weight_small != last_status) {
printf("Weight: %d grams \n", final_weight);
}
last_status = weight_small;
}
exit(0);
return 0;
}
edit: Thank you for the previous code posted,which is used in this.
I know it's ugly! But at least give it a try with your RadioShack USB Scale if you're interested.
Last edited by bkubes; 09-24-2008 at 06:10 PM.
Reason: Credit
Thanks! I'll go hunt down where it may have gone! I haven't had the time to fiddle with it. Wife's all mad because her XP got replaced with Linux and then her scale don't work, and the system is broke, when all she wants most is solitaire. Well...I put a few nice things on like a whole bunch of solitaire games and gnucash, and cosmos screensavers, and grandkid education stuff ... well she likes it better now than the xp! Except for the scale! I'll try it out and get back to you!
Really appreciate the effort!
He cleaned up the code some, and some of the variable names are more intuitive.
I don't have any future plans for the code.. perhaps if I can find the scale again.
However, if anyone wants to use / modify the source code they're free to do whatever they like.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.