Тёмный
Yariv Shavit
Yariv Shavit
Yariv Shavit
Подписаться
Комментарии
@vigneshramanathan441
@vigneshramanathan441 9 лет назад
Hi, I'm getting the same output as above on my CRO after the frequency fixer. But I think so I'm supposed to get a DC signal. I'm I going in the right direction towards building my RADAR? P.S. I'm using dipole & yagi antennas.Please reply.
@joi1369
@joi1369 10 лет назад
Your antennas are obviously different (at the very least, nicer aesthetically) than the ones that MIT used since they're not coffee cans. Do they work just as well and how did you make them if you don't mind sharing? Thanks!
@creator4X6YS
@creator4X6YS 10 лет назад
Hi, No problem. Those patched antenna pairs I purchased at ebay for 7 USD per unit. If you pass me your mail I can add you the test results of the CAntennas and those patched Antenna I did in an Antenna an echoic chamber. The patched Antenna are quite narrowband, check in the net for "High gain 2.4GHz 14dBi directional..." , but I think the seller removed them from ebay. Good luck for your project.
@creator4X6YS
@creator4X6YS 10 лет назад
#include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2);; // Arduino PinOuts to LCD left to right (RS,E,D4,D5,D6,D7) // use the pin configuration for the LCD shoed in the example arduino.cc/en/Tutorial/LiquidCrystal // SONAR PIN Configuration int trigPin = 8; //Trig - at SONAR for DigPin 8 int echoPin = 9; //Echo - at SONAR for DigPin 9 long duration, cm ; void setup() { Serial.begin (9600); //Define inputs and outputs for the SONAR pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); // LCD first row displays constantely lcd.begin(16,2); lcd.print("Distance in cm"); } void loop() { // The sensor is triggered by a HIGH pulse of 10 or more microseconds. // Give a short LOW pulse beforehand to ensure a clean HIGH pulse: digitalWrite(trigPin, LOW); delayMicroseconds(5); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); // // Read the signal from the sensor: a HIGH pulse whose // // duration is the time (in microseconds) from the sending // // of the ping to the reception of its echo off of an object. pinMode(echoPin, INPUT); duration = pulseIn(echoPin, HIGH); // convert the time into a distance cm = (duration/2) / 29.1; Serial.println(cm); //now I want to display it on the LCD if ( cm <120 ) { lcd.setCursor(0,1); lcd.print(" "); // had to set 16 blanks otherwise the 2nd Line won't clear after each reading lcd.setCursor(3, 1); lcd.print(cm); } else { lcd.setCursor(0,1); lcd.print(" "); // had to set 16 blanks otherwise the 2nd Line won't clear after each reading lcd.setCursor(1, 1); lcd.print("NAN"); } delay(200); }
@pedrogonzalez7312
@pedrogonzalez7312 11 лет назад
pedro.gnzlz.flrs@gmail.com my english is very bad... zorry, but arduino calculate fft and labview display or labview calculate fft and arduino send data. i can't synchronous serial communication for arduino. thanks.
@creator4X6YS
@creator4X6YS 11 лет назад
I have LabView2009, is it ok? what's your email address?
@pedrogonzalez7312
@pedrogonzalez7312 11 лет назад
how fft in labview ??? plis help me