TMP117 with ARDUINO DUE interface I2C SCL1/SDA1

The Arduino DUE has two I2C interfaces (SCL / SDA and SCL1 / SDA1), I made the connections for SCL / SDA to work with the SparkFun_TMP117_Arduino_Library-master library and it works correctly. However I want tmp117 to work with SCL1 / SDA1, what modifications do I have to make to make this work?

The arduino due has two I2C interfaces (SCL / SDA and SCL1 / SDA1), I made the connections for SCL / SDA to work with the SparkFun_TMP117_Arduino_Library-master library and it works correctly. However, I want tmp117 to work with SCL1 / SDA1, what modifications should I make to make this work?

In the sketch change sensor.begin() to sensor.begin(0x48,Wire1) and other references from Wire to Wire1.