Keyboard Shortcuts
Likes
- BITX20
- Messages
Search
I'm back from a soggy weekend.? Went camping with the youth group from church, it rained the entire time and some younger boys who had a bad tent ended up completely soaked at night.? So we left early and I didn't get time to play pota.? Tried to do some FT8 at night, but I found my RTC battery must have died as the time was way off, and there was no cell service to get it synced, so not a great radio weekend.? Oh well.? Anyway, Peter, yes there's lots of other simple ways to fix this.? I have the tools to do PCB design, and it's a fun side project.? If I order enough boards they will be very inexpensive and no wire cutting needed.? But your solution would work just fine as well.? YO8RC, that's the encoder I had decided to use, so that's great to know!? When I was playing with my radio in my tent this weekend, I counted about 30 'clicks' for 360degree, which doesn't really match the 20 of the encoder we both are looking at.? But I'll give it a go and see what happens.? I should be able to place the PCB order today, but to save costs I'm going with slow boat shipping so it will be about 10+ days before I get the parts in the mail.? Stay tuned!
|
Re: Basic question aubout Arduino
Gary, Jack,
Ok now seem good see code: Serial.println("Test Gary Anderson Display IF_Freq"); ? ? ? ? ? ? Serial.println(setting.IF_Freq) ; ?// Test Gary Anderson ? ? ? ? ? ? Serial.println("Test Gary Anderson Display IF_Freq + choice of frequency generator"); ? ? ? ? ? ? Serial.println(setting.IF_Freq + sigGenSetting.Frequency); ? // Test Gary Anderson. Display total of the IF_Freq and Frequency choice generator See the serial output: Test Gary Anderson Display IF_Freq 433920013 Test Gary Anderson Display IF_Freq + choice of frequency generator 444920013? ? --> the sum of 433920013 + 11000000 (Exemple of choice frequency generator) So normaly on the ouput of mixer -->444920013-433920013= 11Mhz? and 898.840026Mhz (The sum) So after the filter we must have 11mhz (The 898mhz blocked by filter) The reality, i see nothing on the output of the mixer. I thing normaly will see 11Mhz?? The same hardware is use in reverse order for the LOW SA and work! cdt |
Re: RTC on enhanced Nextion display?
Perhaps you can just modify the Nextion screen. Have never thought about it. You would need to add a way to set the clock from within Nextion. That would require adding a button to the main screen or the menu section to allow you to set the clock. Then in the new screen you could provide the setting function. I am assuming that accessing the clock is available to the Nextion code and that the clock is not some I2C or SPI address that the nano would have to interact with. I would recommend confirming that first.? If the clock is only setable by the processor then you are in for some real pain figuring out how to add that. If you must go there, let me know and I can point you to the file you need to get familiar with to figure it out.?
73 |
Re: Basic question aubout Arduino
Jack, W8TEE
He didn't give the right definition of the variable, which I warned him about: Also, I am assuming that IF_Freq is an int or long data type and not an object. Jack, W8TEE
On Monday, April 29, 2024 at 10:16:40 AM EDT, Gary Anderson <gary.ag5tx@...> wrote:
I'm not a C++ programmer, but try Serial.println(setting.IF_Freg); -- Jack, W8TEE |
Re: Basic question aubout Arduino
Jack, W8TEE
Gerard: I am familiar with the meaning and interpretation of the data types. (See Amazon 1484209419). Did the change in the printf() method call work? Jack, W8TEE
On Monday, April 29, 2024 at 09:48:02 AM EDT, Gerard <kabupos@...> wrote:
Jack, I think the definition here on the soft uint32_t ? ?IF_Freq ? ? ? ? ? ?= 433920000; ? ? ? ?// Default IF frequency (***) i found that on forum Arduino: The leading u says that the type is unsigned. The _t says that the sizes are standard across all platforms. The size of an int depends on the hardware and software being used. The size of a uint16_t is ALWAYS 16 bits. -- Jack, W8TEE |
Re: Basic question aubout Arduino
Jack,
I think the definition here on the soft uint32_t ? ?IF_Freq ? ? ? ? ? ?= 433920000; ? ? ? ?// Default IF frequency (***) i found that on forum Arduino: The leading u says that the type is unsigned. The _t says that the sizes are standard across all platforms. The size of an int depends on the hardware and software being used. The size of a uint16_t is ALWAYS 16 bits. |
Re: Basic question aubout Arduino
Jack, W8TEE
Gerard: Try: Serial.println(IF_Freg); Note there are no single quote marks around the variable name. Also, I am assuming that IF_Freq is an int or long data type and not an object. Jack, W8TEE
On Monday, April 29, 2024 at 04:40:21 AM EDT, Gerard <kabupos@...> wrote:
Good morning, I am addressing you because there are practically no more answers on the HBTE forum. I posted on the Arduino forum, no answer either as if my question would be too complicated?? I made a SimpleSA, it works fine, but I have a problem with the signal generator that does nothing. I would just like to check (display) with the serial monitor of the main program console Arduino? the value of variables Variable--> example: IF_Freq which must be 433920000 (these are hertz), another one optionally. What command line write? If I put: ?Serial.println('IF_Freq'); ? --> display a delirious value 1181902193 on serial console--->? Hi, i not programmer LOL Maybe, given the length of the number, we need something else. It’s all stupid, but it blocks me in my tests So, the good line is?? Thanks for your help -- Jack, W8TEE |
Re: Vara Winlink on Sbitx
One tip that made things even more stable: Use the P2P mode in VARA.
toggle quoted message
Show quoted text
: ) - Rafael On 4/28/24 17:33, Jon / W2JON wrote:
Rafael, sorry I didn’t catch that you were running it on sbitx. |
ps.: regarding the antenna
Low power requires a good antenna. In the picture, I highlighted in red where the wire goes. The highest point is 10 meters, the two lower ones are fixed at 5 - 5 meters. With this delta loop antenna, I can use the device on 7, 14 and 21 MHz without an antenna tuner. The horizontal section is fixed at a distance of approx. 20 meters. Since I have a small area, this seems like a good solution. Important: I often have to change the location of the transmission frequency, because the 100-watt weak signal stations suppress me. I note that I have managed several dx qso's using this method. The log data only shows qso's made with sBitx. -- Gyula HA3HZ |
Basic question aubout Arduino
Good morning,
I am addressing you because there are practically no more answers on the HBTE forum. I posted on the Arduino forum, no answer either as if my question would be too complicated?? I made a SimpleSA, it works fine, but I have a problem with the signal generator that does nothing. I would just like to check (display) with the serial monitor of the main program console Arduino? the value of variables Variable--> example: IF_Freq which must be 433920000 (these are hertz), another one optionally. What command line write? If I put: ?Serial.println('IF_Freq'); ? --> display a delirious value 1181902193 on serial console--->? Hi, i not programmer LOL Maybe, given the length of the number, we need something else. It’s all stupid, but it blocks me in my tests So, the good line is?? Thanks for your help |
Lars,
I see that you have an attempt. What is your output power and what antenna are you using? I have an output of 15 watts at 7 MHz in ft8 mode and I use a vertical inclined Delta Loop, which I feed from above. The antenna consists of 43.8 meters of wire. The device is an sBitx v2, which is cooled by the heatsink and the RPi. -- Gyula HA3HZ |
Just map the pins on the connector to the wires on the ribbon cable, use?a continuity tester and note down the results numbering the ribbon cables lines 1 - 10. Use a continuity tester to check your work. Desolder the connector on the front and then chop off the end of the ribbon cable, split out the wires and solder to the holes on the pcb as per your notes. It took me around an hour in total and problem FULLY solved. No big deal. :) On Sat, 27 Apr 2024 at 03:17, Yo8rc via <Yo8rc=[email protected]> wrote: The original encoders are here: |
Re: Vara Winlink on Sbitx
FB Rafael. Truth be told when we were working out the bugs with VarAC and Flex, Anan, and SunSDR platforms, Jose did make some adjustments to the modem to add a bit of resiliency. ? |
Re: RTC on enhanced Nextion display?
Hi Calvin,
I have not seen a tft file with a clock display.? Two possible reasons: 1 - The models with the RTC are recent additions after most development work was done on the KD8CEC/Nextion software. 2 - There was insufficient memory in the Nextion to allow the extra display or real estate on the screen to fit in. You could modify one of the HMI files to include a clock function.? Check on Mark AJ6CU's GitHub page: 73 Evan AC9TU |