MSF hacking.

eclectic

Moderator
MSF and synchronisation pulses? Some ramblings.

Ref.
http://www.npl.co.uk/upload/pdf/MSF_Time_Date_Code.pdf


For no purpose, other than interest, I hacked a radio controlled clock.
With care, the clock should still work perfectly.

Grounded the PON connection, and took two wires from
PON/gnd and the RF pin.
Amplified the signal using an LM324. (Gain ~15)

Picaxe Input 0 to clock. Output 1 to an LED.
Code:
#picaxe 28x1
symbol ticker = w0

main:
if pin0 = 0 then
ticker = ticker +1
high 1
sertxd (#ticker,"  ")
pause 50
low 1
pause 600
endif

goto main
Checking against another R/C clock, over 3 hours,
w0 was measured as 10801.

Obviously, the code can be improved and modified.
The ~600ms of “slack” time could easily be utilised.

Possible uses?
IR / 433 output, which might be used for:

Synchronising fireflies.
Class experiments.
Time dependent “wake-up” triggers for data collection,
using networked picaxes.

Might be useful? If not, I've still learnt something new.
 

Attachments

I too have just hacked a "radio controlled" alarm clock. Am just finishing code for an 08M that extracts date and time. I will post in Projects section when I'm happy with it.
 

Hooter

Senior Member
The Aritech AR 435 uses dual technology - Pir and Radar - not microwave. From memory you can link select fixed radar ranges up to 12 meters. May be a bit thirsty though. Be careful if used near water masses or sources of running water ie. rainwater downpipes. The radar range selection is very accurate. When used as radar only it will see through walls and windows albeit with a slightly reduced range. Link below.
http://www.sourcesecurity.com/docs/fullspec/AR435.pdf
Hooter
 

Dippy

Moderator
Have you put this in the right place Hooter?

Radar but not microwave?
What sort of 'radar' is that?
Genuine radar? Really?
 

Hooter

Senior Member
Oops

Oops sorry should have been in the 'Presence detector' thread. Yes, the detector sends a timed ping which is reflected from a moving object and the signal return time determines the range of the object. This is then compared with the time selected by the link option and the output is triggered accordingly. I will try and find the appropriate document.
Hooter.
 
Top