fix: map AxeOS VR temp to board, chip temp to chain#315
Open
adamdecaf wants to merge 1 commit into
Open
Conversation
adamdecaf
force-pushed
the
fix/bitaxe-nerdaxe-asic-vr-temps
branch
2 times, most recently
from
July 17, 2026 19:53
c531ffe to
9432ec5
Compare
b-rowan
requested changes
Jul 17, 2026
b-rowan
left a comment
Member
There was a problem hiding this comment.
Concept ACK, but I think this should be limited to fixes specifically on the relevant miner types, and not touch the core data structures (other than the small documentation changed mentioned if you feel it's required).
adamdecaf
force-pushed
the
fix/bitaxe-nerdaxe-asic-vr-temps
branch
from
July 17, 2026 20:25
9432ec5 to
261e1c5
Compare
Author
|
That's my bad. Changing core types wasn't my intention - was going a bit too fast with Grok. |
adamdecaf
force-pushed
the
fix/bitaxe-nerdaxe-asic-vr-temps
branch
from
July 17, 2026 20:42
261e1c5 to
8679ba7
Compare
Member
|
Still a couple core changes, just revert them fully. Making average be chip OR board is even more confusing... |
AxeOS exposes distinct sensors on /api/system/info: `temp` (ASIC chip) and `vrTemp` (voltage regulator / board). Bitaxe and Nerdaxe backends copied `vrTemp` into inlet/outlet chip temperatures and often left `chips[].temperature` empty by reading `temp` from the config-only /api/system/asic payload. Map `vrTemp` to board_temperature and `temp` to inlet/outlet plus chips[0].temperature, preferring live system/info over the ASIC config endpoint.
adamdecaf
force-pushed
the
fix/bitaxe-nerdaxe-asic-vr-temps
branch
from
July 17, 2026 22:29
8679ba7 to
2904f28
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AxeOS exposes distinct sensors on /api/system/info:
temp(ASIC chip) andvrTemp(voltage regulator / board). Bitaxe and Nerdaxe backends copiedvrTempinto inlet/outlet chip temperatures and often leftchips[].temperatureempty by readingtempfrom the config-only /api/system/asic payload.Map
vrTempto board_temperature andtempto inlet/outlet plus chips[0].temperature, preferring live system/info over the ASIC config endpoint.