❌

Normal view

There are new articles available, click to refresh the page.
Before yesterdayHam Radio Blogs

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Β 


❌
❌