John Beale

Results 9 comments of John Beale

I have not actually done a pull request on github before. The only change I made to the file is that one character on line 74.

I have attempted to make a pull request for this change. https://github.com/analogdevicesinc/pyadi-iio/pull/377

As I mentioned at https://github.com/edorfaus/TEMPered/issues/35#issuecomment-128130774 I have one of these new 413d:2107 devices which the Windows "TEMPer V26.1" software calls "Firmware: TEMPerGold_V3.1" and mine is I think temperature only, although...

It does work! After keyboard and mouse, it's hidraw3 on my system. Also needs 'sudo' ``` sudo ./hid-query /dev/hidraw3 0x01 0x80 0x33 0x01 0x00 0x00 0x00 0x00 Device /dev/hidraw3 :...

Edit: awk works for float division, or after doing "sudo apt-get install bc" ``` #!/bin/bash OUTLINE=`sudo ./hid-query /dev/hidraw3 0x01 0x80 0x33 0x01 0x00 0x00 0x00 0x00|grep -A1 ^Response|tail -1` OUTNUM=`echo...

Bash script to print time & temp every ~15 sec, with readTEMPer.sh being my script in above comment: ``` while [ true ]; do temp=`/usr/local/bin/readTEMPer.sh` echo $(date +"%F %T") "...

On my raspberry pi, 'awk' is apparently mawk 1.3.3 and it always gives me 0.0 for example: ``` awk "BEGIN {printf(\"%4.1f\n\",0x0891/100)}" 0.0 awk -W version mawk 1.3.3 Nov 1996, Copyright...

After logging for two days, I see the output of my TEMPer has a nominal 0.06 C resolution. I haven't done a careful calibration, but the plot shows big flat...

This proposal is an excellent idea, and I would guess it is similar to the way that human vision works. There is a separate system just looking for motion. When...