View Full Version : Ultrasonic Sensor
Dear sir/madam,
Where can I find, please, some open sample codes for programming the vex ultrasonic sensor as for easyC?
I'd appreciate any help given.
Thanks in advance!
artdutra04
02-01-2006, 11:20
Dear sir/madam,
Where can I find, please, some open sample codes for programming the vex ultrasonic sensor as for easyC?
I'd appreciate any help given.
Thanks in advance!Welcome to Chief Delphi Forums! :)
The test code for all of the Vex sensors (including the ultrasonic sensor) for EasyC is located by default in the following directory when EasyC is installed.
C:\Program Files\Intelitek\easyC\Projects\Test Code
Inside this folder should be a file named ULTRASONICTEST.ECP. This file contains the sample code used to run the Ultrasonic sensor. Here is basically what is contained in that file:
#include "UserAPI.h"
int ultrasonic;
void main ( void )
{
//Connect Input Wire to Digital Output 11
//Connect Output wire to Interrupt 1
//Near = 2, Far = 100
StartUltrasonic ( 1 , 11 ) ; // interrupt 1= output label on sensor, DO11=input label on sensor
while ( 1 )
{
ultrasonic = GetUltrasonic ( 1 , 11 ) ;
PrintToScreen ( "ultrasonic =%d\n" , (int)ultrasonic ) ;
}
}
Even though I already found the sample, Thanks for your support!
KINGOFCLUBS454
02-01-2006, 20:55
Hmmm...If you gave an idea of what you are looking fro it to do I could whip you up a quick sample of it...If none of the other guys on here beat me to it :p
vBulletin® v3.6.4, Copyright ©2000-2017, Jelsoft Enterprises Ltd.