Тёмный
No video :(

Homebrew PWR/SWR Meter: Part 4 - Final Configuration and Software 

Charlie Morris ZL2CTM
Подписаться 9 тыс.
Просмотров 15 тыс.
50% 1

Video looking at the final circuit configuration and software for the PWR/SWR meter. Details at: zl2ctm.blogspo...

Опубликовано:

 

24 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 41   
@ashave9100
@ashave9100 5 лет назад
Hi Charlie-Thank you ,watching ,taking note and learning from your brilliant work! Still learning the math's !! Thank you again-Mal
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
You'll get there Mal. I'll try and throw in what little I know in the videos. It certainly comes in handy when trying to nut things out.
@ashave9100
@ashave9100 5 лет назад
@@CharlieMorrisZL2CTMHi Charlie, Thank you - I would really appreciate that help, that would be a great boost !! How did you get on with your sig/gen psu problem ? -Mal
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
@@ashave9100 For now I am just ignoring the shield issue as a artifact of double insulated devices. I just make sure the centre conductor has a 100nF decoupling capacitor (different issue).
@ashave9100
@ashave9100 5 лет назад
@@CharlieMorrisZL2CTM Understood- 73 Mal
@julesinsler
@julesinsler 3 года назад
I love the way you do all this stuff...Thank you so much...
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 3 года назад
You are so welcome Jules. I hope you find it useful.
@MrRonychakraborty
@MrRonychakraborty 5 лет назад
calculations are great, I was going to make something like this(y = mx + b) but half of the way i leave for other important job. But now i am inspired again. Your are Great !!!!
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Hi Rony. That's what I started with then noticed the results were not in line with the o'scope calcs. That's when I plotted the output and changed the calculations. Now it's close enough.
@labviewcommunications9193
@labviewcommunications9193 5 лет назад
Thanks again. This is something special for radio lovers.
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Thanks for that.
@labviewcommunications9193
@labviewcommunications9193 5 лет назад
@@CharlieMorrisZL2CTM : I have a circuit which I wana share with you. Could you please provide me your email?
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
It's on QRZ.
@labviewcommunications9193
@labviewcommunications9193 5 лет назад
Whats on QRZ?
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
@@labviewcommunications9193 The email address.
@mstover2809
@mstover2809 9 месяцев назад
Awesome job as usual. So I see you changed coupler from the twin, parallel coax with the DC output, to the other one with an AC out. I was HOPING you would have created the display using the TFT "Cross Needle" unit. Oh well, perhaps another time.
@InteraliaTony
@InteraliaTony 5 лет назад
Very nice explanation on the logic in your math Charlie.
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Thanks Tony. Probably not the best way to do it, but it works for me.
@Paul_VK3HN
@Paul_VK3HN 5 лет назад
I discovered Arduino map() function which is useful for metering code that translates from analog input values to any integer range. Worth considering.
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Thanks Paul. I'll take a look at that.
@benjaminisaacs4668
@benjaminisaacs4668 5 лет назад
This is Awesome Charlie! Totally going to build one!!
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Hi Caspar. Thanks. It certainly works well for me.
@benjaminisaacs4668
@benjaminisaacs4668 5 лет назад
@@CharlieMorrisZL2CTM Yeah it looks it! Plus I'm not a ghost hehe :)
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Opps. Fixed. Sorry about that!
@benjaminisaacs4668
@benjaminisaacs4668 5 лет назад
@@CharlieMorrisZL2CTM Only joking :)
@cjtechtvelectronics
@cjtechtvelectronics Год назад
i have a problem with this line and I don't know how to fixed it that "lcd.begin();" keeps error Serial.begin(9600); // Initialize the display lcd.begin(); lcd.backlight(); lcd.createChar(1, Bar1Array); //Special charaters for the PWR and SWR bar display lcd.createChar(2, Bar2Array); lcd.createChar(3, Bar3Array); lcd.createChar(4, Bar4Array); lcd.createChar(5, Bar5Array); UpdateDisplay();
@m1geo
@m1geo Год назад
Eesh! The AD8307 are like £14 each! 😳
@aneespi4684
@aneespi4684 2 года назад
What is the maximum range of power can be measured using this?
@cbnation1
@cbnation1 5 лет назад
I was wondering why you didn't increase the number of turns on the toroids in the tandem match instead of the 20dB pad? Wouldn't that do the same?
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Hi Cedric. I'd have to have a think about that. The pads work well as they maintain the 50ohm match. Adjusting the turns ration could upset the impedance match.
@Paul_VK3HN
@Paul_VK3HN 5 лет назад
Also, how did you make your LCD block chars look like they expand? I've had trouble coming up with viable meter chars with some displays. Yours expands and contracts smoothly. Nice!
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Cheers. I created 5 special characters; one bar, two bar... five bar. (The code is on the blog). I then work out how many single bars I need, then start printing full fuve bar characters until such time as I have less than five left. I then print the remaining 1-4 bar segment as needed. It certainly works well and looks nice and smooth. while (FwdNumberOfLines >= 5) { lcd.write(5); FwdNumberOfLines = FwdNumberOfLines - 5; } if (FwdNumberOfLines == 1) lcd.write(1); if (FwdNumberOfLines == 2) lcd.write(2); if (FwdNumberOfLines == 3) lcd.write(3); if (FwdNumberOfLines == 4) lcd.write(4);
@Paul_VK3HN
@Paul_VK3HN 5 лет назад
@@CharlieMorrisZL2CTM Nice. Small optimisation... lcd.write(FwdNbrOfLines); 😁
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
@@Paul_VK3HN Cheers.
@irfansensoy5901
@irfansensoy5901 5 лет назад
Hello. If we want to combine all the necessary equipment in a box. What should be the minimum box sizes? I am doing research to make a portable swr meter. Thanks.
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
That's a good question Irfan. I suspect that depends on what power you want to run through the coupler. I know my coupler box is probably way too big, but it was all I could get. Either way, you want the coupler to be isolated from the AD8307s as they are very sensitive. If I did it again, I might try and squeeze everything into the metal box, with full dividers between sections. Not sure if that helps sorry.
@irfansensoy5901
@irfansensoy5901 5 лет назад
@@CharlieMorrisZL2CTM Thank you. My opinion is maximum 50watt for mobile. I wish I had the size of a pocket.
@e.m.6365
@e.m.6365 5 лет назад
Hello Mr Morris, I m trying to copy some of your creations but I crashed on the ad9851 programmation. I already use its brother, the 9850, and I see on the datasheet that I have to differently codify the frewuency word but it doesn t work.. In your opinion what is the problem? I think it couldn t be the circuit cause is the same!
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 5 лет назад
Hi. My advice would be to open up one of the example sketches that came with the AD9850 library you are using. From there you will be able to work out what syntax to use in your main sketch.Charlie
@slixxroot9267
@slixxroot9267 3 года назад
Hey sir, your code not work for arduino nano v.3+lcd i2c 🤣 ...why ?
@CharlieMorrisZL2CTM
@CharlieMorrisZL2CTM 3 года назад
Probably different libraries. Use the example sketches in your IDE to determine the right library and syntax. That's all I can do sorry.
Далее
Homebrew PWR/SWR Meter: Part 1 - Thoughts and Ideas
6:54
Op-Amps  - Using Operational Amplifiers
44:21
Просмотров 279 тыс.
#749b DIY Antenna Tuner Improvement SWR Bridge
15:14
Просмотров 24 тыс.
N6ARA TinySWR Meter Build
14:19
Просмотров 6 тыс.
ImmersionRC RF Power Meter Test Boscam TS832
6:50
Просмотров 30 тыс.
How To Build An SWR / Relative Power Bridge - Part 3
9:15
What is SWR (in layman's terms)
6:52
Просмотров 42 тыс.