-
Notifications
You must be signed in to change notification settings - Fork 50
HidTEMPerNTC
Interface type: HID
Common name: TEMPerNTC
TEMPered status: untested, might partially work (internal sensor only)
USB IDs: 1130:660C
Usable interface number: 1
Manufacturer string: unknown
Product string: unknown
Subtype ID: 0x5B
Temperature sensors: 2; 1 internal FM75 and 1 external NTC
Humidity sensors: 0
I believe this device has one internal and one external temperature sensor, of which the internal one appears to be an FM75 or compatible sensor chip, while the external one is an NTC sensor.
There is code for this device in Magnus Sulland's Perl module.
As such, the queries and offsets are known, but since the code is new, we don't yet know if this device actually works with TEMPered.
Further, only the internal sensor is currently implemented in TEMPered, while the external sensor is not.
This is mostly because the NTC sensors are somewhat different from the other types in how they are read from the device, and so requires more work, which is made more difficult by not actually having one to test with.
However, I do intend to add at least experimental support for the external sensor eventually.
To get the temperature of the internal sensor, query with 54 00 00 00 00 00 00 00
, and use the FM75 method to calculate the temperature; high byte is in offset 0, low byte in offset 1.
Some data for the external sensor can be retrieved by querying with 41 00 00 00 00 00 00 00
; note that I believe further queries can be necessary to get the actual temperature - for now, see the Perl code for details.