• Trill
  • Trill Craft - V2 firmware vs V3

Hi Guys,

I have an original Craft here with firmware 2.

I have found this out as the .setup() returns an error from setScanTrigger(kScanTriggerI2c)

It looks like that setScanTrigger is not supported on V2.

How is the scanning being done by default with this version?

Thanks

Andy

    AndyCap I have found this out as the .setup() returns an error from setScanTrigger(kScanTriggerI2c)

    expected. What's unexpected is that you are told about it ... I thought it would be handled more cleanly

    AndyCap How is the scanning being done by default with this version?

    It's by default set to scan on each I2C transaction (i.e.: kScanTriggerI2c), but if you set the timer via setAutoScanInterval(), it will scan on either i2c transaction or timer (i.e.: kScanTriggerI2cOrTimer).

    Nice one, thanks for the info.