It would be great if someone could confirm my thoughts here:
If I want to set the sensor resolution using Teensy example (ADNS9800test.ino) to a (higher) value, I would write:
//set sensor resolution: Configuration_I for x-Axis, Configuration_V for y-Axis
//0x12 = 3600 cpi
adns_write_reg(REG_Configuration_I, 0x12 );
adns_write_reg(REG_Configuration_V, 0x12 );
in performStartup() after the laser is set & delay(1)?
And if I want to check i could then call
adns_read_reg(REG_Configuration_I);
Could someone please confirm, I am uneasy in these things : |
It would be great if someone could confirm my thoughts here:
If I want to set the sensor resolution using Teensy example (ADNS9800test.ino) to a (higher) value, I would write:
in performStartup() after the laser is set & delay(1)?
And if I want to check i could then call
adns_read_reg(REG_Configuration_I);Could someone please confirm, I am uneasy in these things : |