Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unknown firmware TEMPer2_V3.7 #32

Open
kalle-ankan opened this issue Jan 12, 2022 · 2 comments
Open

Unknown firmware TEMPer2_V3.7 #32

kalle-ankan opened this issue Jan 12, 2022 · 2 comments

Comments

@kalle-ankan
Copy link

Hi
I tried temper.py but I get this error:

Bus 001 Dev 022 1a86:e025 TEMPer2_V3.7 Error: Unknown firmware TEMPer2_V3.7: b'808009b74e2000008001090e4e200000'

Any idea what I can try?

@techfixpros
Copy link

techfixpros commented Mar 30, 2022

This worked for me:

Change

if info['firmware'][:12] in [ 'TEMPerX_V3.1', 'TEMPerX_V3.3' ]:

to

if info['firmware'][:12] in [ 'TEMPerX_V3.1', 'TEMPerX_V3.3', 'TEMPer2_V3.7' ]:

and this

if vendorid == 0x0c45 and productid == 0x7401:
return True
if vendorid == 0x413d and productid == 0x2107:
return True
if vendorid == 0x1a86 and productid == 0x5523:
return True

to

if vendorid == 0x0c45 and productid == 0x7401:
return True
if vendorid == 0x413d and productid == 0x2107:
return True
if vendorid == 0x1a86 and productid == 0x5523:
return True
if vendorid == 0x1a86 and productid == 0xe025:
return True

Results in
pi@piaware:~/Downloads/temper $ sudo ./temper.py
Bus 001 Dev 005 1a86:e025 TEMPer2_V3.7 34.31C 93.76F - 23.81C 74.86F

@kalle-ankan
Copy link
Author

kalle-ankan commented May 4, 2022 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants