1. I am using a 1wire usb dongle (DS9490R) and OWFS (one wire file system) to successfully read the temperatures of my sensors.
2. I would like to instead use a program called W1Retap (http://sourceforge.net/projects/w1retap/) to automatically poll the sensors and write values to a MySql DB. I have seen posts of people who have got this to work on the pi (http://www.zen35309.zen.co.uk/wx/tech.html).
3. The install of W1Retap seems straight forward (http://www.zen35309.zen.co.uk/wx/w1retap.pdf) and is only three commands :
Code: Select all
./configure
make
sudo make install
Code: Select all
...
checking for LIBUSB... no
configure: error: Package requirements (libusb) were not met:
No package 'libusb' found
...
Code: Select all
wget http://sourceforge.net/projects/libusb/files/libusb-1.0/libusb-1.0.9/libusb-1.0.9.tar.bz2
tar xjf libusb-1.0.9.tar.bz2
cd libusb-1.0.9
./configure
make
sudo make install
6. Even after a reboot I still get the same error when trying to run the w1retap ./configure.
7. I am familiar with linux but fairly new to compiling programs in the OS.
Any help would be greatly appreciated!
Cheers.