void begin();
Sets up the host address for I2C communication. LinkIt ONE supports void TwoWire:begin(void), which means the I2C bus is joined as a host. To use the Wire library, under normal conditions, this function must be called and called only once.
#include <Wire.h> void setup() { Wire.begin(); } void loop() { }
Wire.h
TwoWire Class