tinygo.org/x/drivers@v0.27.1-0.20240509133757-7dbca2a54349/sht3x/registers.go (about)

     1  package sht3x
     2  
     3  // Constants/addresses used for I2C.
     4  
     5  // The I2C address which this device listens to.
     6  const (
     7  	AddressA = 0x44
     8  	AddressB = 0x45
     9  )
    10  
    11  const (
    12  	// single shot, high repeatability
    13  	MEASUREMENT_COMMAND_MSB = 0x24
    14  	MEASUREMENT_COMMAND_LSB = 0x00
    15  )