Keyboard Shortcuts
Likes
- Nodered-Hamradio
- Messages
Search
File /!1! Flows by Type/RADIOS/WA9WUD Flex Radio Flow Set With StreamDeck Buttons/Icons 2.zip uploaded
#file-notice
Group Notification
The following files and folders have been uploaded to the Files area of the [email protected] group. By: Alan Blind, WA9WUD <a.alan.blind@...> Description: |
Re: File Notifications
#file-notice
Hi Santiago
?
Good to hear the new station is coming?together.
?
If you want the entire dashboard, all you?need to import is the "WA9WUD Flow Set" file.
?
Be sure first to load the required pallets.? See the "WA9WUD Flow Pallets" pdf file.
?
If you use the stream deck, there is a list of buttons.? See the "SD List" pdf file.? The flow uses the "Stream Deck Web Socket Proxy" custom plug-in.? Follow this link to download the plugin, then install on your SD application:
?
?
Also, I have uploaded a zip file of all of my StreamDeck icons.
?
Enjoy. |
JavaScript error message in new Editor
Any JavaScript experts out there who can tell me what this error message in the new editor is telling me?
Here is the line that is generating this message. I am joining two arrays 'map_array' and 'array_2' into one combined array 'map_array' and the code works. map_array = map_array.concat(array_2)
Error in Editor: No overload matches this call. Overload 1 of 2, '(...items: ConcatArray<number[]>[]): number[][]', gave the following error. Argument of type 'any[][][]' is not assignable to parameter of type 'ConcatArray<number[]>'. The types returned by 'slice(...)' are incompatible between these types. Type 'any[][][]' is not assignable to type 'number[][]'. Type 'any[][]' is not assignable to type 'number[]'. Overload 2 of 2, '(...items: (number[] | ConcatArray<number[]>)[]): number[][]', gave the following error. Argument of type 'any[][][]' is not assignable to parameter of type 'number[] | ConcatArray<number[]>'. Type 'any[][][]' is not assignable to type 'number[]'. Type 'any[][]' is not assignable to type 'number'.(2769) -- Gary K6HN |
RPi Relay Board - Sequent Microsystems
#rpi
Hi
Do you use an RPi? I've just got one of these to experiment with?
Cheers, Mike VK1OO |
Re: File Notifications
#file-notice
Great job as always Alan. This comes at the right time, because I'm halfway with my remote station configuration. Flex 6400 is already in, so is the Antenna Genius. Rotator Genius will be installed in the coming days. I got the same DLI Powerswitch I use at home and finally installed the Antenna Disconnect that will use a Sonoff Relay to connect/disconnect the antennas (I plan to use my weather flow to automatically disconnect and shut down according to the weather).
I also will incorporate an Acom 600S, but I don't know if there are any Node Red flows for it. The Plastar Autotuner will stay at home with the home set up, so I will use the 6400 internal tuner until I'm able to purchase de Tuner Genius. My flows are so old and as most of the IP and udp will change, I think I'll start with a clean sd card from scratch, so your files comes at the right time. ? Santiago -- ______________ 73 de Santiago GLAARG VE 2791E HI8O (former HI8SMX) & KB8SM web:? YouTube: hamworldonline Twitter: @hamworldonline Instagram: hamworldonline |
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýHi Al. ? Here is the link I used to install crelay ? ? I did some reading ¡°between the lines¡± to get it installed as some of the commands are redundant (no need to MAKE if you download the compiled version for example) ? Here¡¯s the steps I took. I¡¯ve attached my flow I build for the SainSmart board. ? 73 Dave wo2x ? ? ? Enabling crelay on Raspberry Pi ? Run these commands from telnet session to Pi ? sudo apt-get install libftdi1 libftdi-dev libhidapi-libusb0 libhidapi-dev libusb-1.0-0 libusb-1.0-0-dev ? sudo git clone https://github.com/ondrej1024/crelay ? cd crelay ? sudo apt-get install libftdi1 libhidapi-libusb0 libusb-1.0-0 ? cp systemd/crelay.service /etc/systemd/system/ ? systemctl daemon-reload ? systemctl enable crelay.service ? ? ? ? create the crelay.conf file in /etc/ ? my crelay.conf file contents ################################################ # # crelay config file # # This file is read by crelay in daemon mode # from /etc/crelay.conf # ################################################ ? # HTTP server parameters ################################################ [HTTP server] server_iface = 0.0.0.0??? # listen interface IP address #server_iface = 127.0.0.1 # to listen on localhost only server_port? = 8000?????? # listen port relay1_label = Device 1?? # label for relay 1 relay2_label = Device 2?? # label for relay 2 relay3_label = Device 3?? # label for relay 3 relay4_label = Device 4?? # label for relay 4 relay5_label = Device 5?? # label for relay 5 relay6_label = Device 6?? # label for relay 6 relay7_label = Device 7?? # label for relay 7 relay8_label = Device 8?? # label for relay 8 ??? # GPIO driver parameters ################################################ [GPIO drv] #num_relays = 8??? # Number of GPIOs connected to relays (1 to 8) #active_value = 1?????? # 1: active high, 0 active low #relay1_gpio_pin = 17?? # GPIO pin for relay 1 (17 for RPi GPIO0) #relay2_gpio_pin = 18?? # GPIO pin for relay 2 (18 for RPi GPIO1) #relay3_gpio_pin = 27?? # GPIO pin for relay 3 (27 for RPi GPIO2) #relay4_gpio_pin = 22?? # GPIO pin for relay 4 (22 for RPi GPIO3) #relay5_gpio_pin = 23?? # GPIO pin for relay 5 (23 for RPi GPIO4) #relay6_gpio_pin = 24?? # GPIO pin for relay 6 (24 for RPi GPIO5) #relay7_gpio_pin = 25?? # GPIO pin for relay 7 (25 for RPi GPIO6) #relay8_gpio_pin = 4??? # GPIO pin for relay 8 ( 4 for RPi GPIO7) ??? # Sainsmart driver parameters ################################################ [Sainsmart drv] num_relays = 8?? # Number of relays on the Sainsmart card (4 or 8) ? ##################################################################### ? ? I did not do the following two commands ? Note 2 (Sainsmart USB 4/8-channel relay card): The Sainsmart card uses the FTDI FT245RL chip. This chip is controlled directly through the open source libFTDI library. No Kernel driver is needed. However on most Linux distributions, the ftdi_sio serial driver is automatically loaded when the FT245RL chip is detected. In order to grant the crelay software access to the card, the default driver needs to be unloaded: ? rmmod ftdi_sio ? To prevent automatic loading of the driver, add the following line to /etc/modprobe.d/blacklist.conf: ? blacklist ftdi_sio ? Both 4 and 8 channel versions are supported. However, there seems to be no way to automatically detect which version of the card is used. Therefore the number of relay channles can be configured in the configuration file. ? ? ? ? ? ? ? From: [email protected] <[email protected]> On Behalf Of Al Groff via groups.io
Sent: Friday, January 13, 2023 4:17 PM To: [email protected] Subject: Re: [nodered-hamradio] Nodered and Denkovi 8 Relay USB boards ? Dave,
? |
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýMaybe the web site I followed had a command included that was not needed. I¡¯ve been working on some custom flows for a Pi I am sending to Hawaii for a remote station my frined and I are putting together so I was tied up today. I¡¯ll find the code and post it here for your review. The good news is an exec node and HTML node were used to control and status update all eight relays. ? I wound up ordering a DLI Web Switch Pro and two AC Relays which will be controlled by Node Red for DC Power supply, rotor controller on, Remote Radio On, and Remote PTT for SmartLink changes. ? The Pi will communicate to the 6400, RC2800PS rotor controller, SteppIR? MonstIR, DLI Web Switch, and Alpha 9500. ? Should be a fun setup when everything is in place. My friend has been on with FT8 almost daily with the radio. The ease of integration into WSJT-X and his logging program vs his Flex 5000A is leaps and bounds easier. ? I¡¯ll dig up the code now and post it. ? 73 Dave wo2x ? ? From: [email protected] <[email protected]> On Behalf Of Al Groff via groups.io
Sent: Friday, January 13, 2023 4:17 PM To: [email protected] Subject: Re: [nodered-hamradio] Nodered and Denkovi 8 Relay USB boards ? Dave,
? |
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýThanks, Dave. I¡¯ve so far managed to not have to ¡°learn¡± MQTT¡±, but I know that the day is coming¡tnx Mike / K5JR Alpharetta GA On Jan 13, 2023, at 1:46 PM, Dave wo2x <RocketNJ@...> wrote:
?Hi Mike I need to compile a list of commands to install crelay then the flow I have is easy to control the right relays on the SainSmart board.? One thing I found is it disables the FTDI sip driver so FTDI USB to serial CAT cables stopped working. The ¡°fix¡± would be to use one Pi running crelay with the USB relay board connected and MQTT to the main Pi which would have the USB to serial cables for rotor, SteppIR, CAT, etc.? It caused me to go a slightly different direction for the remote radio and order another DLI Web Switch Pro and two AC Relays for the remote on and remote PTT.? 73 Dave wo2x Sent from my waxed string and tin cans.? On Jan 13, 2023, at 1:37 PM, Mike / K5JR <k5jr.flex@...> wrote:
|
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýDave,
? I am a bit puzzled by your comment concerning the FDTI drivers and crelay... I am using crelay and three FTDI devices on my PI.. no known issue. AL, K0VM On 1/13/2023 12:46 PM, Dave wo2x wrote: Hi Mike |
Renamed Folder /!1! Flows by Type/RADIOS/WA9WUD Flex Radio Flow Set With StreamDeck Buttons
#file-notice
Group Notification
Alan Blind, WA9WUD <a.alan.blind@...> updated folder /!1! Flows by Type/RADIOS/WA9WUD Flex Radio Flow Set With StreamDeck Buttons |
Re: File Notifications
#file-notice
I uploaded my Flex Radio Flows. ?Most of the controls and indictions include a SteamDeck Button.
Works with MultiFlex and Multiple Flex Radios. The folder includes: - List of required Pallets to load first. - List of StreamDeck Buttons, with Button ID and Web socket path suffix. ?See the end of the list for a link to download the StreamDeck Custom WS Plug-In. - Flex Connection Flow. ?This flow supports all other Flex Radio Elements and must be installed. - A complete Flex Dashboard, as shown below, fully assembled. ?Simply import this file for a fully functional Flex Radio Dashboard. - A folder of each Flex Radio Flow element for those who want to build their own. Alan. WA9WUD |
File Notifications
#file-notice
Group Notification
Alan Blind, WA9WUD <a.alan.blind@...> added folder /!1! Flows by Type/RADIOS/WA9WUD Flex Radio Flow Set With StreamDeck Buttons The following files and folders have been uploaded to the Files area of the [email protected] group. By: Alan Blind, WA9WUD <a.alan.blind@...> Description: The following files and folders have been uploaded to the Files area of the [email protected] group. By: Alan Blind, WA9WUD <a.alan.blind@...> Description: |
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýHi MikeI need to compile a list of commands to install crelay then the flow I have is easy to control the right relays on the SainSmart board.? One thing I found is it disables the FTDI sip driver so FTDI USB to serial CAT cables stopped working. The ¡°fix¡± would be to use one Pi running crelay with the USB relay board connected and MQTT to the main Pi which would have the USB to serial cables for rotor, SteppIR, CAT, etc.? It caused me to go a slightly different direction for the remote radio and order another DLI Web Switch Pro and two AC Relays for the remote on and remote PTT.? 73 Dave wo2x Sent from my waxed string and tin cans.? On Jan 13, 2023, at 1:37 PM, Mike / K5JR <k5jr.flex@...> wrote:
|
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýTell me more about ¡°crelay¡±. I have s of both the Denkovi and SainSmart USB-8 boards.?tnx Mike / K5JR Alpharetta GA On Jan 12, 2023, at 5:18 PM, Dave wo2x <RocketNJ@...> wrote:
?I¡¯m building a flow to work with crelay to control the SainSmart USB-8 board. It is a $30 8 relay board on Amazon. Load crelay on Pi then use Node Red to control it and get status. Dave wo2x
On Jan 11, 2023, at 8:26 PM, WA8Y Steven <stevenlinley@...> wrote:
|
Re: Nodered and Denkovi 8 Relay USB boards
¿ªÔÆÌåÓýI¡¯m building a flow to work with crelay to control the SainSmart USB-8 board. It is a $30 8 relay board on Amazon.Load crelay on Pi then use Node Red to control it and get status. Dave wo2x On Jan 11, 2023, at 8:26 PM, WA8Y Steven <stevenlinley@...> wrote:
|
Re: What are others using to remote power on / off PGXL set to 240V in NodeRed ?
I use DLI switch that energizes a Packard 340B 3 pole 40 amp relay.
It has a 120 volt coil so you just need an open spot on your switch. I have two of these and use one for an Alpha 9500 and one for a PGXL. 73, George / W7GES |
Re: Ser2net problems ????
HI .....
Help from anyone who is using k3ng-rotor whit the SER2NET.... still fighting to get the rotor flow to work....... On output-5 I can see the command I send to my rotor, if I ned the Beam dir I send a "C" whit help from a Inject node and my rotor controller should reply whit "AZ=245".... BUT it do not reply whit it...it reply whit som wrong info :-(? I put a debug on outpu-5 to look what is going in to the ser2net, and on output-6 I can monitor the reply from the rotor ?? But why I see those numbers, I simply cannot understand ?? 73" Ben |
Re: What are others using to remote power on / off PGXL set to 240V in NodeRed ?
I built my own switch that is operated by 12V using a Potter and Brumfield?DPST?relay.? I then switch the 12V to this relay with my KMTronic relay board.? ?This is how the commercial world does it.?? They look like this (not this exact model). There are some remote Pool heater switches you can find on Amazon that would work as well. Mike va3mw? On Thu, Jan 12, 2023 at 11:22 AM Gary, KE8O <ke8o.gary@...> wrote: I picked up a Suraielec model UBTW01B from Amazon which I can control through Alexa and the Smart Home app on my phone. Having a single pane in NodeRed to control all of the devices would be nice. My 12v devices are already handed in NodeRed,? ?I've not opened the box yet and it is in the return policy window. Before going this route and regretting it later I thought I would find out what others are doing to control 240V devices in NodeRed.? |
What are others using to remote power on / off PGXL set to 240V in NodeRed ?
I picked up a Suraielec model UBTW01B from Amazon which I can control through Alexa and the Smart Home app on my phone. Having a single pane in NodeRed to control all of the devices would be nice. My 12v devices are already handed in NodeRed,? ?I've not opened the box yet and it is in the return policy window. Before going this route and regretting it later I thought I would find out what others are doing to control 240V devices in NodeRed.?
The unusual January thunderstorms this morning moving through the area acted as a reminder I need to do something about this before spring and summer roll around.? |