Asked
— Edited
I have just switched over to the new 3 port Ultrasonic Sensors and this script will no longer work. It's the one I used for the 4 port Ultrasonic Sensor. The script always Prints 2 no matter how close I get an object to the sensor.
$Center = GetPing(D11,D11)
$close = 40
:start
if($Center < $close)
print(1)
else
Print(2)
endif
Sleep(2000)
Goto(start)
I have tried a 4 port sensor and it won't work either. Was there a change that I missed?
@bhouston,
Try this:
I don't have a 3 wire Ping, the 4 wire is working.
Thanks Pedro, that worked. Copying and pasting got me on that one.