Skip to content

harlock974/time-signal

Repository files navigation

time-signal

A multiband time signal radio transmitter for Raspberry Pi.

time-signal allows to convert a Raspberry Pi to a radio time server using using either JJY, MSF, WWVB or DCF77 protocol, allowing to automatically adjust time on radio-controlled watch or clock.

Platforms

time-signal has been succesfully tested on :

  • Raspberry Pi Zero W
  • Raspberry Pi 3 Model B Rev 1.2
  • Raspberry Pi 4 Model B Rev 1.1

Build

Inside the directory where the source files are, simply type make

Usage

sudo ./time-signal [OPTIONS]

Options

-s : Time service: either of DCF77, WWVB, JJY40, JJY60, MSF

-v : Verbose. Show modulation enveloppe.

-c : Send carrier wave only, without time signal. Usefull for testing frequencies.

-h : This help.

Hardware

Circuits

time-signal uses GPIO 4 (pin 7) to transmit the modulated carrier wave and a Ground pin. 5V power pin could also be used by your circuit if you want to amplify the signal.

Capture d’écran_2023-09-25_21-27-04 Raspberry Pi pinout

The simplest hardware you can use to transmit the signal is to connect a coil and a 220Ω resistor in serie between GPIO4 and a ground pin :

IMG_20230925_212405

Here with a 60cm wire and 14 turns of 13mm diameter, the range is quite decent : 10cm for DCF77 and 45cm for JJY at 40 kHz.

For a longer range and still simple circuit, you can use a ferrite antenna salvaged from an AM receiver with a N mosfet as amplifier. You'll then have this 3 components + antenna circuit :

MOSFET_OSCILLATOR_JJY40 EMF

DSC_4398s

The hairy 3 components circuit

If you don't have a mosfet, you can use a NPN transistor instead with a 4.7K resistor between its base and GPIO4.

C1 capacitor value depends on antenna inductance and target frequency (see below).

As small mosfets like BS270 can handle up to 250 mA, you can design a more powerful transmitter with two complementary mosfets as a NOT gate and a lower value resistor :

DUAL-MOSFET_OSCILLATOR_JJY40s

I successfully tested these circuits with JJY40 et DCF77 signals and reached a range of ten meters with JJY40 and the dual mosfet configuration.

269642939-9069a2a0-c241-44fa-8030-728f90dce124

G-Shock strong reception (L3)

Antennas

There is much concern in radio communities about strength of the signal related to legal limits. But with low frequencies, it is very difficult to design a long range transmitting antenna :

"The problem of designing compact, efficient, and broadband antennas capable of transmitting signals in the very low frequency (VLF, 3-30 kHz) and low frequency (LF, 30-300 kHz) bands has plagued engineers for decades [...] For instance, attempting to build a standard quarter-wave monopole at 30 kHz would require an antenna to be 2.5 km long, which is roughly three times longer than the tallest building on Earth"(1)

For example, the Ohtakadoyayama station antenna transmitting JJY 40 kHz signal is an umbrella type 250m high, and the Mainflingen station transmitting DCF77 at 77.5 kHz is a T-type 150m high.

So building an efficient transmitting antenna is far beyond practical limits for the hobbyist. The solution here is to use a compact ferrite rod antenna. These ones can be salvaged from an AM Radio, as there is no longer AM broadcasting, or from a cheap DCF77 module. But "ferrite rod antennas are normally only used for receiving. They are rarely used for transmitting anything above low levels of power in view of their poor efficiency. They can be used as a very compact form of transmitting antenna for applications where efficiency is not an issue and where power levels are very low. If power levels rise too high then heat dissipation in the ferrite becomes an issue"(2).

Hence don't expect to transmit outside your house. The longest range I succeeded to reach is 10 meters with a 40 kHz signal, with direct line of sight. The antenna was powered by the 5 V dual mosfet amplifier circuit. Increasing the voltage didn't improve the range.

You'll have to adjust the resonance of your antenna for the requested frequency, with the capacitor. Capacitor value depends on antenna inductance L and target frequency f :

C = 1 / (4×π²×L×f²)`

AM antennas have usually an inductance between 500 and 700 µH, so the theoretical C values are :

  • 40000 Hz : 26 nF
  • 60000 Hz : 12 nF
  • 77500 Hz : 7 nF

If you have an oscilloscope, connect it between the antenna and the capacitor, run time-signal with '-c' option and change the value of the capacitor to obtain the larger and cleaner signal, that is a nice sinusoid.

Poorly tuned antenna (40kHz, 10nF) Quite well tuned antenna (40kHz, 33nF)
DSC_4430-40kHz-10nF-Oregon-s DSC_4429-40kHz-33nF-Oregon-s

Credits and references

Large parts of time-signal code come from Henner Zeller txtempus. The main differences between time-signal and txtempus are :

  • txtempus works on Raspberry Pi 3 and Zero W and Jetson Nano ; time-signal works on Raspberry Pi 3, 4 and Zero W.
  • txtempus is written in C++ while time-signal is written in C and doesn't need CMake to be built.
  • time-signal doesn't use an attenuation pin, so the required hardware is simpler.

Some useful references :

  1. New ideas about designing low frequencies antennas : Slevin, Cohen and Golkowski (2021), "Wideband VLF/LF Transmission from an Electrically-Small Antenna by Means of Time-Varying Non-Reciprocity via High-Speed Switches", URSI GASS 2021, Rome, Italy, 28 August - 4 September 2021.
  2. Ferrite antennas : https://www.electronics-notes.com/articles/antennas-propagation/ferrite-rod-bar-antenna/basics-tutorial.php
  3. Discussion in txtempus github about how to design longest range transmitters : hzeller/txtempus#8
  4. Andreas Spiess video about designing a DCF77 transmitter : https://youtu.be/6SHGAEhnsYk
  5. Wikipedia pages about time services : DCF77, WWVB, MSF, JJY.

About

A multiband time signal radio transmitter for Raspberry Pi

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published