@giuliomoro Hi Giulio, how should I add a trill on the trill hub if one column is full? I tried to add it on the other column but it seems that it messed up the trill number of my current setting.
The code that I have for reading the trills is:
for(uint8_t addr = 0x20; addr <= 0x50; ++addr)
{
Trill::Device device = Trill::probe(i2cBus, addr);
if(Trill::NONE != device && Trill::CRAFT != device)
{
gTouchSensors.push_back(new Trill(i2cBus, device, addr));
gTouchSensors.back()->printDetails();
}
}