
Any idea how event capture works? Does it actually work?
Code: Select all
I2CWrite(port, 0, ping_cmnd);
Code: Select all
I2CBytes(port, register_select, data_size, data);
Code: Select all
WriteI2CRegister(port, I2C_ADDR_DEFAULT, I2C_REG_CMD, US_CMD_SINGLESHOT);
e1 = SensorUS(port);
Code: Select all
I2CWrite(port, 0, ping_cmnd);
I2CBytes(port, register_select, data_size, data)
Code: Select all
WriteI2CRegister(port, ping_cmnd[0], ping_cmnd[1], ping_cmnd[2]);
ReadSensorUSEx(port, data);
Code: Select all
byte USSingleShot(byte port)
{
WriteI2CRegister(port, 0x02, 0x41, 0x42);
return(SensorUS(port));
}
Code: Select all
byte USSingleShot(byte port)
{
WriteI2CRegister(port, 0x02, 0x41, 0x42);
return(SensorUS(port));
}
Code: Select all
WriteI2CRegister(port, 0x02, 0x41, 0x42);
Code: Select all
int value;
// init once: single shot mode
SetSensorLowspeed(S1);
WriteI2CRegister(port, 0x02, 0x41, 0x42);
while(true) {
value=SensorUS(S1); // read multiple: each first ping echo every 100 ms
TextOut(0,0," "); NumOut(0,0,value);
Wait(100);
}
So in this case you need to write the single shot command (0x1) to the command register (0x41) of the device at address (0x2)Commands
off command 0x2 0x41 0x0
single shot 0x2 0x41 0x1
continuous 0x2 0x41 0x2
Code: Select all
SetSensorLowspeed(S1);
while(true) {
WriteI2CRegister(port, 0x02, 0x41, 0x1);
Wait(50);
value=SensorUS(S1); // read multiple: each first ping echo every 100 ms
TextOut(0,0," "); NumOut(0,0,value);
Wait(100);
}
Users browsing this forum: Semrush [Bot] and 10 guests