UK Vintage Radio Repair and Restoration Powered By Google Custom Search Vintage Radio and TV Service Data

Go Back   UK Vintage Radio Repair and Restoration Discussion Forum > Other Discussions > Homebrew Equipment

Notices

Homebrew Equipment A place to show, design and discuss the weird and wonderful electronic creations from the hands of individual members.

Closed Thread
 
Thread Tools
Old 20th Dec 2018, 6:56 pm   #1
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Turntable Stroboscope

Split from this thread: https://www.vintage-radio.net/forum/...d.php?t=152165

All this talk of oscillators and crystals reminded me that I've still to design and build a 300Hz strobe to help with adjusting my turntable(s) speed of rotation.

I know it's slightly off-topic but thought that something might have cropped in the Chinese AM radio kits arena - or if anyone would like to assist??
__________________
BVWS Member
DonaldStott is offline  
Old 21st Dec 2018, 12:39 am   #2
SiriusHardware
Dekatron
 
Join Date: Aug 2011
Location: Newcastle, Tyne and Wear, UK.
Posts: 11,484
Default Re: More Chinese AM radio kits

300Hz strobe: Start with a common 2.457600MHz baud rate crystal, and divide it with a ripple counter down to 300Hz.

The easiest way to do that would be to use a single CMOS 4060 IC as both crystal oscillator and counter. The 300Hz output would be from pin 2 (divide by 8192), I think. Use that output to drive a LED on and off via a transistor.
SiriusHardware is offline  
Old 21st Dec 2018, 6:11 am   #3
TonyDuell
Dekatron
 
Join Date: Jun 2015
Location: Biggin Hill, London, UK.
Posts: 5,190
Default Re: More Chinese AM radio kits

Some time ago I made a 100/120 flashes/second strobe. Started from a 4.9...MHz crystal oscillator module, then 3 common 74HCT chips. Drives 4 white LEDs. I built it for setting the spindle speed on old floppy disk drives (which had a strobe disk on the spindle pulley) and it was easily good enough for that and gives one of the clearest stationary patterns I have ever seen.

Of course the 2 flash rates let me use strobe disks either intended for 50Hz or 60Hz lighting.

I can provide the circuit diagram if anyone wants it.
TonyDuell is offline  
Old 21st Dec 2018, 10:55 am   #4
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: More Chinese AM radio kits

Thanks Sirius and Tony

My circuit design skills are woefully lacking so any assistance whatsoever in this department would be extremely helpful. Always keen to learn, even at my age!
__________________
BVWS Member
DonaldStott is offline  
Old 21st Dec 2018, 4:31 pm   #5
Guest
Guest
 
Posts: n/a
Default Re: Turntable Stroboscope

I got one of these https://www.ebay.co.uk/itm/1Hz-65534...YAAOSwQ5pb9pO3 for a work test jig, works well. A LED would work direct from the output.
 
Old 21st Dec 2018, 4:42 pm   #6
TonyDuell
Dekatron
 
Join Date: Jun 2015
Location: Biggin Hill, London, UK.
Posts: 5,190
Default Re: Turntable Stroboscope

I've attached a scan of my circuit (sorry, I don't use CAD, I use a 'paper aided design' system, better known as a pad).

A couple of things : I've not shown the power and ground connections to the ICs, they go to +5V (output of the 7805) and ground. Also add a 100nF disk ceramic capacitor between +5V and ground close to each IC (that is probably overkill when it comes to decoupling but such capacitors are a lot cheaper than my debugging time, at least for a one-off).

The thing runs off a 12v wall-wart type power supply.

There is a 2-pole 3-way switch. Centre position is off. Flipped one way you get 100 flashes/second. The other way you get 120.

The LEDs are on for 1/16th of the time. A short flash (rather than 50:50 on/off ratio) gives a clearer 'still' pattern of the strobe disk.

You are welcome to make this non-commerically. If you start selling them then I feel I deserve something in return.
Attached Files
File Type: pdf Stroboscope_50Hz_60Hz.pdf (368.1 KB, 279 views)
TonyDuell is offline  
Old 21st Dec 2018, 4:53 pm   #7
ian_rodger
Pentode
 
Join Date: Jan 2015
Location: Greenock, Inverclyde, UK.
Posts: 161
Default Re: Turntable Stroboscope

Sounds like a good Arduino project. An attiny85 (8 pin chip) and an LED might be all you need assuming it can run an output at 300 Hz with the Arduino code overhead. Should be a simple programme. If I have time this weekend I'll test that for you and report back.
ian_rodger is offline  
Old 21st Dec 2018, 5:54 pm   #8
ian_rodger
Pentode
 
Join Date: Jan 2015
Location: Greenock, Inverclyde, UK.
Posts: 161
Default Re: Turntable Stroboscope

Yes that works with attiny 85. I tested it using the attiny's built in oscillator but you would probably want to use an external xtal for stability. There is also the possbility to programme a few selectable frequencies if tou want. If you are not familiar with programming Arduino's (lots of good tutorials on youtube) then I would be happy to program the chip for you. Programme (sketch) below. Assumes an led is connected to pin 7 via a suitable resistor.

/*
Strobe at 300Hz

LED connect from pin 7 to ground via suitable current limit resistor
*/
int LED = 1; // PB1 maps to pin 6 on attiny85
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(LED, HIGH); // turn the LED on (HIGH is the voltage level)
delayMicroseconds (333); // delay 333 uS
digitalWrite(LED, LOW); // turn the LED off by making the voltage LOW
delayMicroseconds (3000); // delay 3000 uS

}
ian_rodger is offline  
Old 21st Dec 2018, 7:20 pm   #9
SiriusHardware
Dekatron
 
Join Date: Aug 2011
Location: Newcastle, Tyne and Wear, UK.
Posts: 11,484
Default Re: Turntable Stroboscope

Ian's method is the way to go if you happen to have an Arduino on hand as the hardware is built for you, even down to there being an LED already on the PCB.

If you prefer a basic electronic circuit, this 4060 oscillator / divider (attached, from the internet), might be a good starting point. The output you'd need to use for 300Hz would be from pin 2, and you'd have to use that to drive a transistor or darlington pair, in turn driving an LED.
Attached Thumbnails
Click image for larger version

Name:	4060_Freq_Source.gif
Views:	458
Size:	2.1 KB
ID:	175032  
SiriusHardware is offline  
Old 22nd Dec 2018, 12:09 pm   #10
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: Turntable Stroboscope

Wow - thanks guys but unfortunately a bit beyond my knowledge and understanding"

What I really need now is to find a Ladybird "Guide to Oscillators and Crystals", a Look and Learn "Oscillator/Dividers/Counters" supplement but appreciate I've no chance of sourcing an Eagle Annual cutaway drawing explaining "How a CMOS 4060 IC works"!

These days it's all "Idiots Guides .. " !

Looks like more R&D is needed on my part so I'll get onto this Project in the New Year.

Meantime best wishes to everyone for the Festive Period and for a prosperous New Year.
__________________
BVWS Member
DonaldStott is offline  
Old 24th Dec 2018, 11:10 am   #11
Herald1360
Dekatron
 
Herald1360's Avatar
 
Join Date: Feb 2007
Location: Leominster, Herefordshire, UK.
Posts: 16,527
Default Re: Turntable Stroboscope

The circuit shows the crystal oscillator bits (the active bits are inside the chip).

The 4060 itself is simply an oscillator and a string of 14 binary dividers with most of the intermediate divider stage outputs brought out to pins. It's very useful for producing long, reasonably accurate time delays without resorting to gigohm and farad RC circuits
__________________
....__________
....|____||__|__\_____
.=.| _---\__|__|_---_|.
.........O..Chris....O
Herald1360 is offline  
Old 2nd Jan 2019, 7:53 pm   #12
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: Turntable Stroboscope

Happy New Year to all on the Forum.

Getting back on track with my planned 300 Hz strobe I managed to borrow a "commercial" product from a friend and took pictures of the board and components - many unmarked!

It's based on a 4.9152 crystal and an HEF4060BP binary counter/divider and oscillator.

What's the easiest way to reverse engineer a circuit diagram from a picture of a board - I'd like to understand what is going on rather than just lash up a DIY copy.

I'll probably need some help in identifying the value and type of certain components further down the line but meantime can anyone identify the diodes in the attached pictures - I can't see any markings?
Attached Thumbnails
Click image for larger version

Name:	D1.jpg
Views:	193
Size:	38.0 KB
ID:	175640   Click image for larger version

Name:	D2.jpg
Views:	226
Size:	20.8 KB
ID:	175641  
__________________
BVWS Member
DonaldStott is offline  
Old 2nd Jan 2019, 8:06 pm   #13
Electronpusher0
Nonode
 
Join Date: Jun 2016
Location: Bognor Regis, West Sussex, UK.
Posts: 2,288
Default Re: Turntable Stroboscope

Probably silicon general purpose diodes, 1N914 or 1N4148

Peter
Electronpusher0 is offline  
Old 17th Jan 2019, 2:40 pm   #14
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: Turntable Stroboscope

Looking for a bit more technical assistance as I try to educate myself on how Oscillators and Crystals work in a circuit.

As mentioned above I'm trying to construct a 300 Hz strobe based around a 4.9152 crystal and an HEF4060BP binary counter/divider and oscillator. Looking at the Product data sheet for the HEF4060BP we have the Pin out diagram : -

Click image for larger version

Name:	HEF_1.PNG
Views:	116
Size:	13.0 KB
ID:	176570

I'm confused by how you calculate the counter out values when there is no Q1, Q2 or Q10 - see here for the Pin description table: -

Click image for larger version

Name:	HEF_2.jpg
Views:	96
Size:	42.3 KB
ID:	176571

To get from 4915200 Hz to 300 Hz I need to divide by 2 ^14 i.e. 16384 - so, put simply, what pin would that be??

I appreciate I need to build a circuit involving caps and resistors to get the whole thing oscillating and that a Darlington pair will be required to drive an LED - I'll also need some judiciously place diodes.

Small steps ...
__________________
BVWS Member
DonaldStott is offline  
Old 17th Jan 2019, 3:51 pm   #15
Guest
Guest
 
Posts: n/a
Default Re: Turntable Stroboscope

Use Q13, it starts at Q0 so that is 14 in real money. Funnily enough I recommended this chip to a work colleague a few days ago for a time out function, my brain sucked it out of the dim and distant past.
Quote:
I appreciate I need to build a circuit involving caps and resistors to get the whole thing oscillating and that a Darlington pair will be required to drive an LED
The datasheet gives the circuit for crystal use, a couple of caps and a resistor. If you run it from 5V (three 1.5V cells is good) it will drive a white LED directly, no resistor or transistor needed. Modern LEDs are very bright and the chip won't mind.
 
Old 17th Jan 2019, 4:26 pm   #16
ms660
Dekatron
 
ms660's Avatar
 
Join Date: Apr 2011
Location: Cornwall, UK.
Posts: 13,454
Default Re: Turntable Stroboscope

Quote:
Originally Posted by DonaldStott View Post
I'm confused by how you calculate the counter out values when there is no Q1, Q2 or Q10 - see here for the Pin description
This data sheet should clear the confusion:

https://pdf1.alldatasheet.com/datash...HEF4060BP.html

Lawrence.
ms660 is offline  
Old 17th Jan 2019, 4:28 pm   #17
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: Turntable Stroboscope

Quote:
Originally Posted by merlinmaxwell View Post
Use Q13, it starts at Q0 so that is 14 in real money.
Thanks - makes perfect sense now that I know it starts at Q0 - so that's pin 3 on the HEF4060BP!

Quote:
The datasheet gives the circuit for crystal use, a couple of caps and a resistor. If you run it from 5V (three 1.5V cells is good) it will drive a white LED directly, no resistor or transistor needed. Modern LEDs are very bright and the chip won't mind.
The circuit I was working on runs from a 9V battery and includes a Darlington pair, several resistors and capacitors, including electrolytics, along with some diodes to prevent back voltage. Something based on this: -

Click image for larger version

Name:	Darlington.png
Views:	172
Size:	58.4 KB
ID:	176579

Your solution sounds much simpler to the extent that I may build both just out of curiosity and my own further education.
__________________
BVWS Member
DonaldStott is offline  
Old 17th Jan 2019, 8:48 pm   #18
Restoration73
Nonode
 
Restoration73's Avatar
 
Join Date: Jun 2013
Location: Surbiton, SW London, UK.
Posts: 2,801
Default Re: Turntable Stroboscope

It will be unusual for any stock crystal to be unaffected by the circuit loading, so you can
replace one of the 22pF caps with a 66pF trimmer, and that will enable fine frequency
adjustment, when measured with a frequency meter. It also allows junk box crystals
to be pulled to the desired output.
Restoration73 is offline  
Old 17th Jan 2019, 9:51 pm   #19
TrevorG3VLF
Rest in Peace
 
TrevorG3VLF's Avatar
 
Join Date: Apr 2011
Location: Matlock, Derbyshire, UK.
Posts: 1,378
Default Re: Turntable Stroboscope

Your output circuit is far too complicated. Use a 1k resistor to the base, (no capacitor), use a simple transistor with emitter connected to ground, put the LED in series with the collector resistor. If you need a lot of current use a n channel FET, there is plenty of voltage to drive it.
No diodes are needed but a capacitor across the chip power supply would be good.

White LEDs use fluorescence, I do not know whether they have a long time constant
TrevorG3VLF is offline  
Old 18th Jan 2019, 12:41 pm   #20
DonaldStott
Octode
 
DonaldStott's Avatar
 
Join Date: Aug 2015
Location: Glasgow, UK.
Posts: 1,840
Default Re: Turntable Stroboscope

Quote:
Originally Posted by Restoration73 View Post
... you can replace one of the 22pF caps with a 66pF trimmer...
Would this one be appropriate - seems a bit expensive: -

https://www.cricklewoodelectronics.com/CTR80908003.html

The circuit in the Product data sheet for the HEF4060BP shows a bias Resistor with the values 100 kΩ to 1 MΩ - should this be a variable Resistor?

Click image for larger version

Name:	HEF_Crystal_Oscillator_2.jpg
Views:	172
Size:	31.2 KB
ID:	176626
__________________
BVWS Member
DonaldStott is offline  
Closed Thread

Thread Tools



All times are GMT +1. The time now is 10:59 pm.


All information and advice on this forum is subject to the WARNING AND DISCLAIMER located at https://www.vintage-radio.net/rules.html.
Failure to heed this warning may result in death or serious injury to yourself and/or others.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright ©2002 - 2023, Paul Stenning.