❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayCopasetic Flow

Project TouCans Flies Again!

Β Project TouCans is back up and running! The rig just stopped dead in its tracks during the NAQCC Sprint a few weeks back, and that was that. After two hours of debug and soldering yesterday, it's back.

A few things of note:

The battere was completely dead. The imuto power supplies TouCans uses hold their charge for weeks, so I'm guessing this was the number one issue. But! The battery didn't do it's usual buck supply hum into the radio, (hence me not realizing it was even close to being out of juice.)Β 

The lack of buck supply hum might have been precipitated by the second issue I found. The audio output wire was severed within its insulation. A DC ohmmeter check indicate that there was an open circuit. I'm wondering though, if the wires were close enough together in the insulation if they weren't capactatively coupled, and therefore still producing sound and providing a bit of a filter. I replaced the wire in question, so we may never know. Here are the spots for the rig so far this morning. No backyard QSOs yet.




Project TouCans Lab Notebook: Getting Rid of the Noise

Β I finally landed at a quiet tape vs. noiseΒ Β configuration for TouCans on Saturday afternoon. Here’s how.


In the picture above, the wires circled in green include the + and - power wire, (white and red respectively), and the keyer wire, (also red.) When I taped the bundle of wires including the single turn coil shown in the white wire to the side of the can, the noise from the power supply went away. I was left with only noise from the radio, (the kind I want), and a gentle hum from the power supply because it had switched into buck converter mode to step its voltage up to the required 15V! The helicoptering from the Pico-W was also almost gone.

In other parts of the project, the Pico-W has started burning through pairs of AA batteries rather quickly.

More F2 Skip Cesium Development Notes

Β Here's the query I'm using for Burr Trail



============================================

select

Β  tx_lng,

Β  tx_lat,

Β  rx_lng,

Β  rx_lat,

Β  rm_rnb_history_pres.timestamp,

Β  rm_rnb_history_pres.dB,

Β  rm_rnb_history_pres.Spotter,

Β  haversine(tx_lat, tx_lng, rx_lat, rx_lng) as total_path,

Β  gis_partial_path_lat(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lat,

Β  gis_partial_path_lng(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lng,

Β  id,

Β  strftime('%Y%m%d', timestamp) as date,

Β  strftime('%H%M', timestamp) as time,

Β  'US-4399' as park,

Β  'KD0FNR' as call,

Β  1770.829467773438 as elev_tx

from

Β  rm_rnb_history_pres

where

Β  dB > 100

Β  and timestamp > '2024-05-27'

Β  and timestamp < '2024-05-28'

order by

Β  rm_rnb_history_pres.timestamp desc

=======================================================


At some point I'll add an ionosonde field using this map for each QSO. For the Boulder, CO ionosonde, the query will look like

=========================================================

select

Β  tx_lng,

Β  tx_lat,

Β  rx_lng,

Β  rx_lat,

Β  rm_rnb_history_pres.timestamp,

Β  rm_rnb_history_pres.dB,

Β  rm_rnb_history_pres.Spotter,

Β  haversine(tx_lat, tx_lng, rx_lat, rx_lng) as total_path,

Β  gis_partial_path_lat(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lat,

Β  gis_partial_path_lng(tx_lat, tx_lng, rx_lat, rx_lng, 200) as el_lng,

Β  id,

Β  strftime('%Y%m%d', timestamp) as date,

Β  strftime('%H%M', timestamp) as time,

Β  'US-4399' as park,

Β  'KD0FNR' as call,

Β  'BC840' as ionosonde,

Β  1770.829467773438 as elev_tx

from

Β  rm_rnb_history_pres

where

Β  dB > 100

Β  and timestamp > '2024-05-27'

Β  and timestamp < '2024-05-28'

order by

Β  rm_rnb_history_pres.timestamp desc

limit 1

====================================================================

The extra ionosonde field works!!!Β 

References

Ionosonde Data

This was made possible with data collected byΒ 


❌
❌