You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hermes-Lite
Hello,
I was wondering if anyone is using the HL2 with the ATU-100 tuner kit?
I've successfully used my HL2 with my Icom AH-4 (which of course is a
much better tuner than the ATU-100, but I like tinkering).
I've configured my ATU-100 to work in automatic mode and low power.
73,
Steve
kf7o
Albin Stigö
unread,
May 5, 2021, 3:47:04 PM5/5/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Steve Haynal, Hermes-Lite
Thanks Steve!
I will try your approach. Also have a pickit3. I was a bit disappointed the firmware use the commerical mikroC IDE which is only available commercially and windows only. I feel the firmware could be easily modified to emulate an Icom tuner.
I also reduced the ratio on the coupling transformer to 1:6 but perhaps I should go even lower.. did you use 1:5?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hermes-Lite
Hi Steve,
I placed my ATU-100 at the feeding point of my antenna, using a bias tee to power it. To control the ATU-100 I use an ArduinoNano that replaces and simulates the display on the i2c and an ESP8266 which connects to my MQTT broker via Wifi and is connected to the ATU's button connector. The ESP-8266 receives all the data "displayed" through a serial connection from the Arduino and publishes everything via MQTT. This blends in great with the rest of my automation efforts using NodeRED.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hermes-Lite
Hi Florian,
Thanks for sharing your project! I was thinking of something similar and will take a close look at what you've done.
73,
Steve
kf7o
Pierre Martel
unread,
Nov 21, 2021, 10:20:59 PM11/21/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hermes-Lite
Hi Steve, do you think it would be possible to interface the ATU-100 or ATU-10 SWR bridge to the HL2 in some way so that it would be avaialble to the multiple SDR software?
Or would you think that interfacing a esp8266 to the i2c port of the ATU-100 and emuling the screen as Florian did would be a better way to give access to such information?
Then the coder of the different software could use that info into their software to be displayed?
Pierre
VE2PF
Florian Thienel
unread,
Nov 22, 2021, 10:45:14 AM11/22/21
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Hermes-Lite
Hi Pierre,
If you want to directly connect the ATU-100 to the HL2's I2C bus, the tuner has to be an I2C slave. I was not able to build an alternative firmware for the used PIC to make the tuner an I2C slave. The original firmware uses two pins of the PIC that are not intended to be used for I2C, hence you cannot use the hardware support for I2C of the PIC but instead have to implement I2C purely in software. This is not difficult when you need to build the I2C master, but impossible on this specific PIC to implement the I2C slave (at least for me).