¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io
Date
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
Sounds great Dave....I spent 2 hours today watching the YouTube video. It was great. Are you gonna be updating the KPA500 / KAT500 flow too? That's what I'm getting. Charlie KB8CR
By Charlie Rubenstein · #1458 ·
Re: Updated flows by WO2X = VITA49, FlexRadio, KPA1500 and PSTRotatorAZ
You¡¯re welcome. Please read the comment nodes in the flows by double clicking them to read comments. The VITA49 flow needs the ping node changed to the IP of your radio. That is the node that says
By Dave wo2x · #1457 ·
Re: Updated flows by WO2X = VITA49, FlexRadio, KPA1500 and PSTRotatorAZ
Thanks David!
By Dwayne Sinclair AB6A · #1456 ·
Updated flows by WO2X = VITA49, FlexRadio, KPA1500 and PSTRotatorAZ
Hi All, I have updated the following flows: VITA49v5 & FlexRadiov5 - These two flows must be used together. I have zipped them into a single file and uploaded them to my file area. Meters are zeroed
By Dave wo2x · #1455 ·
File Notifications #file-notice
The following files have been uploaded to the Files area of the [email protected] group. * /wo2x flows/VITA49_FlexRadiov5_flows.zip ( /g/nodered-hamradio/files/wo2x
By [email protected] Notification <noreply@...> · #1454 ·
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
That is exactly what my updated Flex Radio and VITA 49 flows do. When there is no client connected Node Red sets the meters to zero. Note ¨C when disconnecting a client it may take up to a minute
By Dave wo2x · #1453 ·
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
I send the meter a 0 when it's turned off. Simple... -- Gary K6HN
By K6HN Gary · #1452 ·
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
Thanks, Alan......the left pane is the one you helped me make. It's working great when the rig is on.? I imported Dave's KPA500 and KAT500 flows, but haven't gotten the amp and tuner just yet
By Charlie Rubenstein · #1451 ·
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
Charlie I know for sure that Dave, WO2X, is almost ready to release a new version of the VITA49 and Flex API flow that will "zero" the meters. Alan WA9WUD
By Alan Blind, WA9WUD · #1450 ·
Moderated Re: Zeroing meters when rig or amp off (eg. KPA500, Flex)
This is what it looks like when things are turned off:
By Charlie Rubenstein · #1449 ·
Moderated Zeroing meters when rig or amp off (eg. KPA500, Flex)
Is there a way to zero the meters/text data for the meters when the radio or amplifier is turned off? Currently, when they are off, the meters register full scale. Thanks, Charlie KB8CR
By Charlie Rubenstein · #1448 ·
Re: INA-219 Node Fixed/Updated, no longer requires downgrade to Node.js v10
Sorry Neal.? I should of clicked on the link before posting.? It's right there!!!!! LOL
By Kyle AA0Z · #1447 ·
Re: Parsing a string
Since it's fixed length (8) convert it into an array then you can access each position via an index Object.assign([], string); newObject?=?Object.assign([], string); OR without conversion const
By the gadget techie · #1446 ·
Re: INA-219 Node Fixed/Updated, no longer requires downgrade to Node.js v10
Yes there is Kyle. Look to the beginning of the thread. Procedure is in the link to the bug report. It is not hard. I am running the workaround myself. Neal
By Neal AB6G · #1445 ·
Re: INA-219 Node Fixed/Updated, no longer requires downgrade to Node.js v10
I just got my INA219 boards last week and were going to start playing around with them.? I had not installed the INA-219 node yet.? I installed my OS in 2020. I'm assuming there isn't a procedure on
By Kyle AA0Z · #1444 ·
Re: Parsing a string
Advantage of a 50¡± 4k TV as a monitor. Good for my tired old eyes (age 59). I do like your single function solution! 73 Dave wo2x Sent: Friday, January 29, 2021 4:07 PM To:
By Dave wo2x · #1443 ·
Re: Parsing a string
Hi Alan, Mick¡¯s single function node is fine for processing Mike¡¯s string input. With the DLI the input is a base 10 number which equates to the binary position of the eight outlets. A combo of
By Dave wo2x · #1442 ·
Re: Parsing a string
Thanks Dave, I caught it... I need a bigger monitor. Doing it on a laptop screen. It would seem Michaels has a plethora of options available to him now. wrote:
By Mick , W8BE · #1441 ·
Re: Parsing a string
Hi Mick, Close ? Your msg6 if/else has true & true.(typo) Here¡¯s the cleaned up, cleaned up version. 73 Dave wo2x var output = msg.payload.split(""); msg.out0 = parseInt(output[0]); msg.out1 =
By Dave wo2x · #1440 ·
Re: Parsing a string
All, Last update.? ?I changed the topic to relay...? Inject of 101010 Give you: Here is the final function: var output = msg.payload.split(""); msg.out0 = parseInt(output[0]); msg.out1 =
By Mick , W8BE · #1439 ·