Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   Programming (http://www.chiefdelphi.com/forums/forumdisplay.php?f=51)
-   -   Ultrasonic Sensor (http://www.chiefdelphi.com/forums/showthread.php?t=41109)

winners 02-01-2006 06:34

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

Re: Ultrasonic Sensor
 
Quote:

Originally Posted by winners
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:
Code:

#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 ) ;
      }
}


winners 02-01-2006 15:31

Re: Ultrasonic Sensor
 
Even though I already found the sample, Thanks for your support!

KINGOFCLUBS454 02-01-2006 20:55

Re: Ultrasonic Sensor
 
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


All times are GMT -5. The time now is 14:12.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi