Posted: 2025-04-15 20:10 | Hi John, Sorry I am really late to this, but it just crossed my screen as the result of a Google search.
I am one of the developers of the Ham Radio Solutions VBand web site and have some bad news for you. The BH8DZE USB adapter is NOT compatible with our site. It is unfortunate that so many people have purchased this adapter only to find out it is not 100% compatible.
My only suggestion is that you return the device to the seller and purchase an adapter. from our site. We guarantee compatibility or you money back (including shipping).
Regards,
David Steffen. W6DS
Ham Radio Solutions
|
Posted: 2025-04-17 18:48 | 你好John,如果是使用手动电键的话,可以用一个廉价鼠标来改装一个usb适配器,只需要将鼠标拆开,能看到鼠标左键的按钮有两个触点,将两个触点分别用电线连接到手动电键的两个触点上。最后只需将改装后的鼠标连接电脑,将鼠标光标移动到软件的发报按键上,就可以用你的手动电键发报了 -机器翻译,可能与原文有误差(中文文本为原文)
希望对你有帮助
Hi John,if using manual keys, a cheap mouse can be used to modify a USB adapter. Simply open the mouse and you will see that the left button has two contacts. Connect the two contacts to the two contacts of the manual key using wires. Finally, simply connect the modified mouse to the computer, move the mouse cursor to the software's send button, and you can use your manual keys to send the message - machine translation, there may be errors compared to the original text (Chinese text is the original text).
I hope this is helpful to you.
|
Posted: 2025-06-12 02:53 | The BH8DZE USB adapter can be used with Vband. The device has two modes distinguished by an LED. If the LED flashes it is in the Vband mode (sends [ and ] characters). To switch modes, press the small button switch next to the 3.5mm socket while connecting to power. Make sure the Vband website is the active window (ie, mouse should be in that window)
|
Posted: 2025-08-08 18:21 | If such a button switch exists, I would immedatly purchase two of these adapters. But I can not see the button on the many fotos, where the adapter is offered. They show both sides of the adaptor clearly and in detail, but no button.
Can anyone please give a link to a foto, which supports the claim of the existence of the mysterious button?
73, John
|
Posted: 2025-10-22 10:02 | Hello all,
Here is my solution a simple AHK script :
; --- BH8DZE Fix for CW Web Tools ---
; Replace mouse clicks with keyboard keys when using CW websites
#Persistent
#SingleInstance Force
SetTitleMatchMode, 2 ; Allow partial matches in window titles
SetTimer, CheckActiveWindow, 500
return
; --- Define list of target URLs or titles ---
urls := ["vband", "cw-bot.hamradioduo.com", "morse-battleship", "cw-checker"]
CheckActiveWindow:
WinGetTitle, activeTitle, A
WinGetClass, activeClass, A
isTarget := false
for each, url in urls {
if (InStr(activeTitle, url)) {
isTarget := true
break
}
}
; Only intercept if browser window + target site
if (isTarget and (InStr(activeClass, "Chrome_WidgetWin") or InStr(activeClass, "MozillaWindowClass") or InStr(activeClass, "Qt5QWindowIcon"))) {
Hotkey, LButton, SendLeftCtrl, On
Hotkey, RButton, SendRightCtrl, On
} else {
Hotkey, LButton, SendLeftCtrl, Off
Hotkey, RButton, SendRightCtrl, Off
}
return
; --- Replace mouse buttons ---
SendLeftCtrl:
Send, {LCtrl down}
Sleep, 30
Send, {LCtrl up}
return
SendRightCtrl:
Send, {RCtrl down}
Sleep, 30
Send, {RCtrl up}
return
7 3 , Bastien
|