Announcement

Collapse
No announcement yet.

TM 808 White's

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • I have changed the op amp from LM386 to a NE5532 and I think it works better.

    Circuit :
    Click image for larger version  Name:	TM808 NE5532.jpg Views:	0 Size:	435.5 KB ID:	413749


    Signal at CD4024 :
    Click image for larger version  Name:	CD4024 NE5532.jpg Views:	0 Size:	399.4 KB ID:	413750


    Signal Q1 to coil (6400Hz) :
    Click image for larger version  Name:	Q1 NE5532.jpg Views:	0 Size:	348.9 KB ID:	413751

    Comment


    • Coils dimensions are correct ?

      Click image for larger version

Name:	TM808 COIL.jpg
Views:	406
Size:	189.4 KB
ID:	413798

      Comment


      • Some modifications:

        Power Supply changed 78S40 -> MC34063

        Click image for larger version  Name:	TM808 mc34063.jpg Views:	0 Size:	396.2 KB ID:	413830

        Audio Amp :

        Click image for larger version  Name:	808audio_amp.jpg Views:	0 Size:	19.7 KB ID:	413825 Click image for larger version  Name:	808audio_amp_mod.jpg Views:	0 Size:	19.5 KB ID:	413826

        Audio Amp PCB :

        Click image for larger version  Name:	TM808 tip31.png Views:	0 Size:	114.7 KB ID:	413827 Click image for larger version  Name:	TM808 tip31 mod.png Views:	0 Size:	136.9 KB ID:	413828

        Batt Meter Resistor :

        Click image for larger version  Name:	TM808 +VBatt.png Views:	0 Size:	74.6 KB ID:	413829

        Comment


        • Hi berreizeta
          Have you finished making 808? And please announce the results. Thank you

          Comment


          • To generate 6.5 kHz you can use attiny85 and this program
            HTML Code:
            #include <avr/io.h>
            
            #include <avr/interrupt.h>
            
             
            
            void comp_match() {
            
              DDRB |= (1 << PB0);  // set PB0 as output
            
              TCCR0A = 0x00;
            
              TCCR0B = 0x00;
            
              TCCR0B |= (1 << CS00);   // No prescaling
            
              TCCR0A |= (1 << WGM01);  // Toggle mode and compare match  mode
            
              OCR0A = 75;              // Compare value can be calculated as frequency = Clock / OCR0A
            
                                       // A value of 75 leads to about 108,6 kHz at a clock rate of 8150000 Hz
            
              TCNT0 = 0;
            
              sei();  // Enabling global interrupt
            
              TIMSK |= (1 << OCIE0A);
            
            }
            
             
            
            ISR(TIMER0_COMPA_vect) {
            
              PORTB ^= (1 << PB0);  //Toggling port PB0
            
            }
            
             
            
            void setup() {
            
              comp_match();
            
            };
            
             
            
            void loop() {
            
            }
            
             
            
            /*
            
                
            
                The expected frequency can be calculated as freq = clock rate  / compare value
            
                In this specific case the clock rate is around 8 150 000 Hz.
            
                (See frequency 81 kHz for compare value 100)
            
                Empirical data measured 2023-08-23 with a noname ATtiny 85 board
            
                compare value    Frequency
            
                        1..37 -> 217.3 kHz  
            
                           38 -> 211,5kHz  
            
                           40 -> 201 kHz
            
                           50 -> 162 kHz
            
                           60 -> 135 kHz
            
                           70 -> 116,3 kHz  
            
                           75 -> 108,6 kHz  
            
                           76 -> 107,3 kHz  
            
                           80 -> 102 kHz  
            
                          100 -> 81,8 kHz  
            
                          200 -> 41,1 kHz
            
                          255 -> 32,3 kHz
            
            */
            ​

            Comment


            • or 26.3 kHz,
              I don't think the exact frequency is needed, the device can work between 5kHz and 8kHz

              Comment


              • On collector Q1 20V (on the bottom ), on Rx testing coil 0.2 V = 5 time less than in DD coils = not good.
                ​​​ Click image for larger version

Name:	thumbnail_IMG_0950.jpg
Views:	270
Size:	79.3 KB
ID:	414464 Click image for larger version

Name:	thumbnail_IMG_0952.jpg
Views:	270
Size:	83.7 KB
ID:	414465 Click image for larger version

Name:	thumbnail_IMG_0953.jpg
Views:	272
Size:	82.7 KB
ID:	414466 Click image for larger version

Name:	thumbnail_IMG_0954.jpg
Views:	272
Size:	79.2 KB
ID:	414467

                Attached Files

                Comment


                • Tested with Active XTAL 25.6Khz (6.400Hz) and Pasive Xtal 420Khz (6.535Hz) both works fine !

                  25.6Khz + CD4024 = 6400Hz
                  420Khz + CD4040 = 6535Hz

                  Little change on circuit for 420Khz (photo), original circuit s/schematic don't work for me ..

                  Click image for larger version

Name:	420Khz XTAL CD4040 pcb.jpg
Views:	216
Size:	424.4 KB
ID:	414488


                  Comment


                  • Pito, join both coils at side, not at center. :
                    Click image for larger version

Name:	IMG_20230829_175050_574.jpg
Views:	223
Size:	441.7 KB
ID:	414490

                    Comment


                    • RX SIGNAL 14V :
                      Click image for larger version

Name:	tm808 1.jpg
Views:	258
Size:	262.9 KB
ID:	414514

                      PROBE COILS (6.533Hz) :
                      Click image for larger version

Name:	tm808 2.jpg
Views:	209
Size:	514.1 KB
ID:	414515

                      Comment


                      • Click image for larger version

Name:	TM808 PREAMP RX.jpg
Views:	275
Size:	446.4 KB
ID:	414519

                        Click image for larger version

Name:	tm808 1.jpg
Views:	218
Size:	292.5 KB
ID:	414520

                        Click image for larger version

Name:	tm808 3.jpg
Views:	217
Size:	341.9 KB
ID:	414521

                        Click image for larger version

Name:	tm808 2.jpg
Views:	218
Size:	555.6 KB
ID:	414522

                        Comment


                        • Originally posted by berreizeta View Post
                          Pito, join both coils at side, not at center. :
                          Click image for larger version  Name:	IMG_20230829_175050_574.jpg Views:	26 Size:	441.7 KB ID:	414490
                          The red coil with green tape and LED is for testing how much power is emitted, Rx testing coil is under the table on the floor.​

                          I have two questions.
                          1. What are the values of Tx, Rx capacitors
                          2. Can you put the yellow coil under the table on the floor while the Tx is on it?
                          What amplitude do you have on the that probe coil?​

                          Comment


                          • My coils are not final, they are just to test the circuit, they are not perfect.

                            I do the calculation of the capacitors/frequency with:

                            https://ekalk.eu/lc_es.html

                            With the coil on the ground at 80cm, barely 1V reaches the circuit, and the preamp MC33078 needs a minimum of 1.6V)

                            Click image for larger version  Name:	TM80821.jpg Views:	0 Size:	311.4 KB ID:	414576
                            Click image for larger version  Name:	TM80823.jpg Views:	0 Size:	249.6 KB ID:	414580
                            Click image for larger version  Name:	TM80822.jpg Views:	0 Size:	450.1 KB ID:	414582

                            With the coil at 45cm, it reaches enough for the preamp to act, giving about 13.5V

                            Click image for larger version  Name:	TM80824.jpg Views:	0 Size:	221.7 KB ID:	414578
                            Click image for larger version  Name:	TM80825.jpg Views:	0 Size:	289.2 KB ID:	414583
                            Attached Files

                            Comment


                            • If for testing you can use your yellow coil I can compare your transmitter with mine, for that I need to know also diameter of your coil and number of turns.
                              What is the value capacitors of the coils that you have ?
                              The last oscilloscope is telling that bias of the amplifier is incorrect, the pulses should be 50% duty cycle.​

                              This arrangement allow you to check sensitivity (range ) of detector without additional electronics using just oscilloscope, for balancing move the coil back an forward.


                              Attached Files

                              Comment


                              • Click image for larger version

Name:	thumbnail_FullSizeRender.jpg
Views:	168
Size:	50.9 KB
ID:	414593

                                Comment

                                Working...
                                X