Yariv Shavit
Yariv Shavit
  • Видео 10
  • Просмотров 5 328
Cheap power meter with RF Detector
Verify a hopping signal in two bands with a cheap AD8317 log detector and some filters...
#arduino #hackrfone #rf #powermeter #ad8317 #spectrumanalyzer
Просмотров: 209

Видео

Examples VISA-Event Status Register polling
Просмотров 5Месяц назад
Explaining how to use the Event Status Register for long measurement times.
AntennaTesting
Просмотров 1043 месяца назад
Horizontal Beam Pattern of a cantenna at 2.4 GHz with a self built rotating table and the HackRF One. Downloads of code at github.com/Yariv3G/Antenna_beam_tester
GPS Simulator with HackRFOne and GNU Radio
Просмотров 4344 месяца назад
This video was made with Clipchamp. It describes basically the GNURadio setup with HackRF one to transmit GPS location Data. You can find the Vectors I created and the GPSsimulator.grc files in this link github.com/Yariv3G/GPS-Sim-HackRF In this link you can find also the executable gps-sdr-sim.exe that transfers epheremis files to Iq.bin vector.
Hardware Demonstration of a Scalable Cognitive Sparse Array
Просмотров 133 года назад
This Video was part of the "show and tell" during ICASSP 2020. The paper can be downloaded at : ieeexplore.ieee.org/document/9266620 For questions on the HW And the PoC Setup email me ;-)
ICASSP 2020 Sub-Nyquist Radar with Distorted Pulse Shape
Просмотров 253 года назад
This Video was part of the "show & tell" of IEEE ICASSP 2020. The paper can be downloaded here: ieeexplore.ieee.org/document/9266620 For more details on the HW and PoC Setup mail me ;-)
Spatial Modulation for Joint Radar-Communications Systems presented at ICASSP 2020
Просмотров 2613 года назад
Paper can be found here: ieeexplore.ieee.org/document/9345999 (My part was the HW realization)
Ultrasonic distance meter w LCD
Просмотров 27110 лет назад
Using Arduino code on Teensey 3.1 for Ultrasonic Distance metering and LCD display.
CoffeCanRadar.mp4
Просмотров 2,5 тыс.10 лет назад
This is the outcome of the OpAmp and would be the input to an ADC, intentionally the Mic In of the soundcard but it is too high. As this was taken from the MIT course of DIY RADAR by Dr. Charvant.
Arduino Spectrum Analyzer
Просмотров 1,6 тыс.11 лет назад
I am playing an Sinus of 250 Hz onto the ARDUINO UNO A0 (analog in) and via LabView displaying it in the Frequency Range.

Комментарии

  • @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 10 лет назад

    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 10 лет назад

    I have LabView2009, is it ok? what's your email address?

  • @pedrogonzalez7312
    @pedrogonzalez7312 10 лет назад

    how fft in labview ??? plis help me