I'm having issues configuring the device using python. I was able to confirm successful operation in C on Arduino, so the hardware works.
For some reason, I'm only able to write to the read/write register (0x00). Every other register returns a value of 0x00 after being written. I'm using the Adafruit_GPIO.I2C library and I've also tried the smbus library but received the same result.
sensor.device.write8(0x00, 0) #Enables write
sensor.device.write8(0x0a, 255) #Writes value of 255 to 0x0a
sensor.device.write8(0x00, 1) #Enables read
sensor.device.readList(0x00, 1) #read 1 byte from 0x00
sensor.device.write8(0x0a, 1) #read 1 byte from 0x0a