Very rough prototype, using arduino micro, the "keys" I found out later were non conductive so I only placed one connection to steel conductive tape. The orange wire goes nowhere yet, brown goes to the stainless steel tape, red to positive, black to gnd, blue is scl, white is sda, they do have a jumper cable to separate channel that then has a resistor put to another jumper of the 5v. I am trying to make a simple keyboard that does x pos and or y pos, I dont know coding so was using chat gpt to do it and is mainly just a prototype to see if cgpt is capable before moving onto the next steps, however using the trill craft example didnt give me any readings which prompted me to get the following code (ide) from support after emailing them (havent responded back so now I am here)
void setup() {
> // put your setup code here, to run once:
> Serial.begin(115200);
> delay(4000); // wait for the UART to come up
> int ret = trillSensor.setup(Trill::TRILL_CRAFT);
> while(ret != 0) {
> Serial.println("failed to initialise trillSensor");
> Serial.print("Error code: ");
> Serial.println(ret);
> delay(1000);
> }
> }
Using this I got the failed to initialise trill sensor, error code 2.
I also tried taping a prong to a metal socket to see if conductive tape wasnt actually conductive but same code, not really sure where to go from here?