|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
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! |
|
#2
|
|||||
|
|||||
|
Re: Ultrasonic Sensor
Quote:
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 ) ;
}
}
|
|
#3
|
|||
|
|||
|
Re: Ultrasonic Sensor
Even though I already found the sample, Thanks for your support!
|
|
#4
|
|||||
|
|||||
|
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
![]() |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Using and Coding an ultrasonic sensor | Jaine Perotti | General Forum | 14 | 06-08-2004 14:13 |
| Making a Sensor Board | SpaceOsc | Technical Discussion | 11 | 15-05-2004 12:46 |
| heres the code. y this not working | omega | Programming | 16 | 31-03-2004 15:18 |
| Banner Sensor Programming Problem | 2Crisis | Programming | 4 | 24-02-2004 13:40 |
| Quick Optical Sensor Question | zorro | Technical Discussion | 10 | 21-01-2003 06:39 |