I would advise you to review the Espruino documentation on the I2C.writeTo function:
Call type:
function I2C.writeTo(address, data, ...)
Parameters
address - The 7 bit address of the device to transmit to, or an object of the form {address:12, stop:false} to send this data without a STOP signal.
data, ... - One or more items to write. May be ints, strings, arrays, or special objects (see E.toUint8Array for more info).
and also what the Adafruit writeRegister8 function does, namely pack the two arguments together and send them both to the device.
In short, your existing code appears to read and write from a variety of random device addresses, none of which have any corresponding I2C bus device apart from 29(0x1D).
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I would advise you to review the Espruino documentation on the I2C.writeTo function:
and also what the Adafruit writeRegister8 function does, namely pack the two arguments together and send them both to the device.
In short, your existing code appears to read and write from a variety of random device addresses, none of which have any corresponding I2C bus device apart from 29(0x1D).