Changes between Version 4 and Version 5 of gsc


Ignore:
Timestamp:
12/05/2017 04:23:21 PM (6 years ago)
Author:
Ryan Erbstoesser
Comment:

add direct example

Legend:

Unmodified
Added
Removed
Modified
  • gsc

    v4 v5  
    159159 - Note 16777215 indicates a default value and item is not connected.
    160160
     161For systems without the GSC Hardware Monitor driver, values can be read directly through I2C:
     162Example: Temperature is shown as register 0x00 and 0x01.
     163{{{
     164i2cget -f -y 0 0x29 1
     1650x01
     166i2cget -f -y 0 0x29 0
     1670xc0
     168}}}
     169
     170Combining 0x01 and 0xc0, is 0x01c0, which comes out to be 448, which divided by 10, equals 44.8 Deg. C.
     171
    161172
    162173For Ventana i.MX6 processor temperature, see [wiki:ventana/thermal here]