-
Notifications
You must be signed in to change notification settings - Fork 16
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
FAN is not turned on for V2 case (normal HDMI) #14
Comments
Same here! Tried it with "i2cset -y 1 0x1a 0x64" and it works... |
how can I check if my fan is working? |
Sound? ;) It's not super loud but you definitely can hear it if it's working. |
Also: try this command to see if it works: |
the fan turns on with command: |
In my experience, even at lowest FAN speed you can still hear it. I am not sure if this reversal of arguments is only for the V2 cases (large HDMI) or it applies to V1 (HDMI mini) as well |
I confirm this behaviour, it only turns on the fan with the command. The argon1 service need a fix. My cases is the v2 version. |
Exactly the same issue here:
Works perfectly fine...otherwise the fan never turns on... |
@sergiuko83, thanks, patch with swapping the arguments worked like a charm. In my case path to the file was |
Edited to be more explicit.
in /lib/python3/dist-packages/argonone/init.py the method _bus_write needs to be modified like this:
From:
To:
Not exactly sure why this is reversed, but it only works like this in my case...
Command guide for argonone case:
https://github.com/Argon40Tech/Argon-ONE-i2c-Codes
The initial version is sending the value 0x00 (register value which is 0xd3 in my case but it seems to be irrelevant) which turns off the fan being 0%.
The I2C command for argon case is
i2cset -y _SMBUS_DEV _SMBUS_ADDRESS value
i2cset -y 1 0x1a 0x00
i2cset -y 1 0x1a 0x0A
i2cset -y 1 0x1a 0x32
...
i2cset -y 1 0x1a 0x64
Where 0x00, 0x0A, 0x32 ... 0x64 are the hexadecimal values for the fan speed percentage: 0%, 10%, ... 100%
You can send this command from terminal and check for FAN activation (it can be heard even at low revolutions).
Are you sure the initial version spins the fan? Maybe they changed the call for V2 case?
The display part is working without problems, IO errors not returned, but fan does not turn at all
The text was updated successfully, but these errors were encountered: