Close
0%
0%

Pulse to Tone Converter

Converts pulse dialing of your POTS telephone to DTMF dialing allowing you to use it with your VOIP's FXS-port.

Similar projects worth following
Old telephones use pulse dialing, which many SLICs no longer support. Nowadays tone dialing, aka dtmf dialing is used. The goal of the project is to build a converter from pulse dialing to tone dialing.

This project has been replicated and tested independently by at least three other electronics enthusiasts.

Please checkout Patrick's comments below if you're considering building this project.

Who needs this?

You want to use a pulse dialing telephone, but your SLIC (such as a VOIP-interface) doesn't support pulse dialing.  Instead of building the project described here, you could make things easy for yourself by replacing your SLIC by one that supports pulse dialing, e.g. the Grandstream HT801 (untested) or others.

Description

Has this kind of thing been done already?  Oh yes, many times.  But this device will be cheaper to build and solve some shortcomings of the converters around today by being:

  • insensitive to line polarity
  • open source
  • readily available & cheap parts (no bulky audio transformer needed)
  • plug and play immediately, no 15mins pre-charging time needed
  • doesn't steal power from the telephone line when the telephone horn is on-hook
  • no modifications to rotary phone required

Sources

There's little more annoying on Hackaday.io than people "sharing" their project, but keeping the source files to themselves.  So here you go:

  • Firmware source code can be found on :  GitHub.  
  • Production data (hex-files, gerber files, schematics, ...) can be found on : GitHub project's releases
  • PCB design files are online on EasyEda.  The PCB design files have also been exported to Altium format and have been added to the repository on GitHub.  The contents of these Altium files has not been checked.

DTMF-generator standard

ETSI ES 201 235-2 V1.1.1 (2000-09) describes some rules DTMF-generators should comply to.

  • Maximum signal amplitude : HF + LF = (-9,0 dBV, +2,0 dB) + (-11,0 dBV, +2,5 dB) = -7dBV + -8dBV = 1.26Vpp + 1.13Vpp = 2.39Vpp.  Practical signal amplitudes will be much lower.
  • Tone duration : 65-90ms
  • Pause duration : > 65ms
  • Frequency tolerance : +/-1.5%.  This implies using an external oscillator or crystal because the internal RC-oscillator is too dependent on power supply voltage and temperature.

References

Pulse to tone converters that require modifications inside the telephone:

Gerber_BRD170127_R2.zip

PCB design Rev2

Zip Archive - 26.88 kB - 07/29/2019 at 19:53

Download

DTMF_0123456789_attiny_8MHz.wav

Recording of the SLIC's audio output of the attiny85V DTMF-generator, running at 8MHz

Waveform Audio File Format (WAV) - 39.11 kB - 02/03/2018 at 19:48

Download

DTMF_0123456789.wav

Recording of the SLIC's audio output of the ProTrinket3V DTMF-generator, running at 12MHz

Waveform Audio File Format (WAV) - 39.11 kB - 01/20/2018 at 16:56

Download

dtmfgen7.png

Work in progress: version 7 for inserting DTMF to phone line

Portable Network Graphics (PNG) - 52.40 kB - 01/17/2018 at 21:00

Preview
Download

  • 1 × Telephone RJ11 Line ADSL Modem Broadband Phone What's better than 3D-printing a rectangular box or buying a standard box and cutting holes in it? Buying a splitter box on AliExpress, remove the internal circuitry and keep the box and the RJ11 connectors. Use the component name as search term in AliExpress

  • Validating the prototype

    Christoph Tack03/17/2018 at 21:04 0 comments

    Printed board assembly

    Assembly is fairly easy.  Be careful buying the BAT46W in the correct package.  I've updated the PCB to revision /1, replacing the BAT46WJ (SOD-323) to BAT46WH (SOD-123).  The -WH variant is bigger and easier to solder by hand.

    Programming the board

    I explained the procedure already in a previous log.  To connect the programmer to your ATTINY85, you can use a Pomona SOIC-clip as shown on the image below.

    Measuring interrupt frequency

    To check if the crystal has the correct load capacitors attached.  A special debug firmware is loaded into the device which generates a square wave with a frequency that should be 31.250KHz.

    Interrupt frequency should be 31.250KHz

    Adjusting DTMF-amplitude

    Someone reported that the DTMF-amplitude was too large for their application.  Increasing R10 from 10K to 100K and R12 from 10K to 15K fixed that.

    Mounting in the housing

    The housing originally contained an ADSL-splitter.  It can be bought for a few cents from AliExpress.  Its PCB has been removed.  The modular jacks have been transferred to the pulse-dtmf-converter.

    Pulse-dtmf-converter in its opened housing.
    The PCB that was originally mounted is shown below it.

    Finishing up

    The Philps DECT-phone, which uses tone dialing is connected to the "PHONE"-port of the converter, as indicated on the bottom of the housing.

    The FXS-port of the internet gateway is connected to the "MODEM"-port.

    The pulse dialing phone is connected to the "LINE"-port.

    Pulse-dtmf-converter in use...

    Making a few test calls assured me that both phones are working well.


    That's all, folks.

  • Implementing sleep modes

    Christoph Tack02/06/2018 at 19:50 0 comments

    The nature of pulse dialing is such, that every pulse interrupts the power supply for 70ms.  The pulse rate is 10pps, which means that during dialing, the MCU only gets power 30ms every 100ms.  During the 70ms power gaps, the MCU has to survive on a 470µF capacitor.

    Using sleep modes would allow us to choose a smaller supply voltage to reduce power consumption and to leave more headroom for the pulse dial telephone.  Another option would be to decrease the elco and save cost.

    Adding Sleep functionality in main loop

    The rotary dial functionality is using Thomas Fredericks's Bounce2 library.  To function properly it requires an update() function to be called regularly.  By adding the update() function in the loop() function of Arduino, it's called every few tens of microseconds.  No mechanical switch is that fast, so a lot of MCU cycles are wasted there.  The following oscilloscope screenshots show VCC (green) and the GPIO connected to the main power entry point before the rectifying diode (blue).

    MCU remains in ACTIVE mode, VCC drops down to 3.08V
    MCU remains in ACTIVE mode, VCC drops down to 3.08V

    The solution lies in adding a sleepNow() functionality in the main loop, which forces the MCU into idle mode when there's nothing to do.  In idle mode, interrupts still wake the MCU.  

    Timer0 interrupt is in Arduino standard set up to be called every ms.  So each ms, timer0 fires, which wakes the MCU.  The MCU calls the Bounce2.update() and goes to sleep again.  Simple but effective.

    MCU using IDLE mode, VCC drops only downto 3.57V
    MCU using IDLE mode, VCC drops only downto 3.57V

  • Connecting to the FXS

    Christoph Tack02/03/2018 at 20:40 0 comments

    Fail...

    • Connecting to the SLIC KS-0835F: everything works perfectly.  
    • Connecting to the FXS port of the internet gateway: FAIL
      • The DTMF-converter doesn't start up reliably.  It sometimes runs in bursts, as if the crystal doesn't start reliably.
      • The number doesn't get dialed.

    Issue 1: Startup problem

    There's no reset circuitry present on the breadboard.  The BOD is disabled as well.  

    No reset controller, problems guaranteed... (blue=VCC, green=RST)

    The reset level (in green) follows the power supply voltage (in blue).  Due to the charging of a 470µF capacitor, voltage ramp up is very slow.  Nearly 60ms before full voltage is reached.

    An option is to add a reset controller which has a timeout of 100ms.  The reset trigger level should be 2.6V.  This will avoid spurious resets during pulse dialing.  

    With a reset controller, the CPU starts up reliably. (blue=VCC, green=RST)

    An alternative approach is to use the 2.7V BOD in the attiny85.  

    BOD 2.7V enabled, BLUE=VCC, GREEN=DEBUG GPIO

    Using the BOD seems to work as reliably as the external reset controller.  Using the BOD saves us four components in the BoM.

    Remark:

    The AVR-ISP MkII automatically generates a reset pulse at power up of the MCU.  Be sure to disconnect the programmer during testing.

    Issue 2: FXS doesn't recognize DTMF

    This problem has two causes:

    DTMF signal too weak

    Connecting the Philips DECT to the SLIC again showed that the DTMF-signal that this design generates is too weak.  Increasing the resistor between the reference and cathode of the bottom TLV431 to 39K solves this problem.

    DTMF timing incorrect

    The original idea was to generate a DTMF-digit immediately after a digit has been dialed.  The DECT doesn't work that way.  You form the number first.  After that you "pick up" the horn, which initiates the DTMF-sequence of your formed number.

    The pulse-dtmf-converter successfully dialed my cellphone when it was configured in the same way.

    Finally...SUCCESS

  • Programming the Attiny85

    Christoph Tack01/29/2018 at 19:59 0 comments

    Arduino

    The attiny85 is not supported on Arduino by default.  Download the library from github and install it.

    Programming connections

    SignalATTINY85AVRISP mkII
    MISO61
    VCC82
    SCK73
    MOSI54
    RST15
    GND46

    Programming instructions

    • In the Arduino IDE make sure the following is set:
      • Tools -> Board : "ATTiny25/45/85"
      • Timer 1 Clock : "CPU"
      • Chip : "ATtiny85"
      • Clock : "8MHz (external)"
      • B.O.D. : "B.O.D. Enabled (2.7V)"
      • LTO : "disabled"
    • Set the type of your programmer : "AVRISP mkII"

    Burn the bootloader

    Burn the bootloader (which is empty) to make sure fuse settings are correct.

    Luckily, the arduino toolchain sets the correct fuse values.  Using the Engbedded Atmel AVR® Fuse Calculator, you can check the fuse settings:

    -U lfuse:w:0xff:m -U hfuse:w:0xd5:m -U efuse:w:0xff:m

    Upload the application

    Be sure to write the bootloader first.  Otherwise, the device will run at 1/8 of the desired CPU frequency.

    Verifying CPU clock frequency

    The internal RC-oscillator is not accurate enough to generate DTMF correctly over large temperature and voltage specs.  For development purposes, a 12MHz oscillator can be connected to pin 2 of the Attiny85.  Oscillators are quite power hungry.  So, for rotary dial testing, in which the power supply is cut off during dialing, it should be powered from a separate 5V supply.

    An 8MHz external clock would is a better choice.  The attiny85V is not specified to work at 12MHz.  When the supply voltage drops below 4V the MCU behaves inpredictably.  With an 8MHz clock, the attiny85V has a much wider supply voltage range.

    The MCU frequency can be checked with a timer/counter.  A digital oscilloscope that only samples at 100Ms/s will not yield reliable results.

    Verifying DTMF frequencies

    The first step is to check the interrupt frequency, which is our PWM-frequency.  This looked ok using the PM6665.  It's more reliable to measure if OCR1A is forced to a fixed value so that a fixed duty cycle is being generated.

    Next step is to verify the DTMF frequency.  This signal can be measured at the non-inverting input of the opamp in the current source configuration.  By leaving out one of the two frequencies of the DTMF signal, allows for easier measurement of the frequency of the restored waveform.

    A final test was to generate the same DTMF-sequence as had been done before using the ProTrinket3V

    The result can be heard here.

    Decoding using multimon shows that the generated DTMF-tones are correct.

    ctack@ctack-X550LD:~$ multimon -a DTMF -t wav DTMF_0123456789.wav 
    multimod  (C) 1996/1997 by Tom Sailer HB9JNX/AE4WA
    available demodulators: POCSAG512 POCSAG1200 POCSAG2400 EAS AFSK1200 AFSK2400 AFSK2400_2 HAPN4800 FSK9600 DTMF ZVEI CCIR SCOPE
    Enabled demodulators: DTMF
    sox WARN sox: Option `-s' is deprecated, use `-e signed-integer' instead.
    sox WARN sox: Option `-2' is deprecated, use `-b 16' instead.
    DTMF: 0
    DTMF: 1
    DTMF: 2
    DTMF: 3
    DTMF: 4
    DTMF: 5
    DTMF: 6
    DTMF: 7
    DTMF: 8
    DTMF: 9
    sox WARN rate: rate clipped 2830 samples; decrease volume?
    sox WARN dither: dither clipped 2441 samples; decrease volume?

  • Verification of the generated DTMF

    Christoph Tack01/20/2018 at 14:27 0 comments

    The SLIC has an audio output.  Let's hook that up to the mic input of the laptop.  As wikipedia shows, there are different pinouts standards  for a TRRS 3.5mm audio jack.  In other words, there's no standard pinout.  Use a DMM to find out what pinout your laptop is using.  My Acer has the following pinout:

    • Tip = Left out
    • Ring1 = Right out
    • Ring2 = GND
    • Sleeve = Mic in

    In Ubuntu Linux, 5s of audio can easily be recorded by:

    arecord -d 5 DTMF_0123456789.wav

    To play back the file:

    aplay DTMF_0123456789.wav

    The microphone level might need some tuning.

    Decode the DTMF-audio with:

    multimon -a DTMF -t wav DTMF_0123456789.wav 
    multimod  (C) 1996/1997 by Tom Sailer HB9JNX/AE4WA
    available demodulators: POCSAG512 POCSAG1200 POCSAG2400 EAS AFSK1200 AFSK2400 AFSK2400_2 HAPN4800 FSK9600 DTMF ZVEI CCIR SCOPE
    Enabled demodulators: DTMF
    sox WARN sox: Option `-s' is deprecated, use `-e signed-integer' instead.
    sox WARN sox: Option `-2' is deprecated, use `-b 16' instead.
    DTMF: 0
    DTMF: 1
    DTMF: 2
    DTMF: 3
    DTMF: 4
    DTMF: 5
    DTMF: 6
    DTMF: 7
    DTMF: 8
    DTMF: 9
    

    Decoding works perfectly.

    Alternative DTMF decoders

  • Realization of coupling DTMF to telephone line

    Christoph Tack01/18/2018 at 20:41 2 comments

    Schematic explanation

    Warning: This schematic is not a definitive version.  Only the DTMF-generator has been implemented.  There are no provisions yet for detection of pulses during dialing.

    The schematic above couples DTMF to the telephone line.  

    • The current source on the left is the SLIC that sources 15mA to 30mA current.
    • The R_POTS_telephone is the internal resistance of the off-hook telephone.  You can see that the DTMF-generator is in series with the telephone line.  When the telephone is on-hook, the telephone resistance is very high, so there's no loop current.  This circuit doesn't consume power when the telephone is on-hook.
    • The diode bridge rectifies the loop current, making this circuit insensitive to line polarity or line reversal.
    • R5 not needed for generating DTMF, only during pulse dialing.
    • U4, R3, R4 function as an adjustable zener.  The "zener voltage" is set to 4.6V.  This is the source of the supply voltage of the DTMF generator.  So no matter what the loop current is, the zener behavior will limit the supply voltage to about 4.6V.
    • D2 & C1 are not needed for generating DTMF.  They keep the MCU going when the telephone is in pulse dialing mode.  When these pulses are being generated, loop current is interrupted and the supply voltage of the DTMF-generator would collapse.
    • Rcpu1 simulates the behavior of the MCU, drawing 10mA at 3V.
    • You probably recognize U2, R7, R8 as an adjustable zener again.  These three components couple the DTMF to the telephone line.  We can modulate the U2-zener voltage, and hence modulate the total voltage over our DTMF-generator.  This voltage is one-on-one transferred to the audio output of the SLIC.  The drawback of this solution is that it adds about 2V to total voltage over the DTMF-generator.
    • U1, R1, Q1 is a current source.  By varying the current into U2, it's "zener" voltage will vary linearly.  
    • U3 with surrounding caps and resistors:  An active low pass filter, desiged with Nuhertz Filterfree.  For audio frequencies as used in this design, active filters are the way to go.  Passive filters are either ineffective with RC or require very large inductors with LC realizations.
    • R6, R2: Voltage shift and divider for the input signal to avoid exceeding the CM-range of the opamp.

    Measurements

    The measurements show the voltage at the audio output of the SLIC.  As you can see, most of the HF-noise has been removed and there's no noticeable deformation of the DTMF-waveform.

    DTMF-pulse on SLIC's audio output
    Zooming in on DTMF-signal on the SLIC's audio output
    Picture of the current setup

    There's not so much to see really.  The breadboard contains the Adafruit Protrinket 3V and the SLIC.  The 1.27mm-protoboard on the left has the opamp circuit on it.  The 2.54mm-protoboard on the bottom right contains the TLV431 circuits.  On the right, you can see the RJ11-connection to the telephone.

  • Direct Digital Synthesis

    Christoph Tack01/05/2018 at 21:07 0 comments

    DTMF will be generated using Direct Digital Synthesis (DDS)

    The first implementation will be done with Adafruit ProTrinket 3V, which runs at 12MHz.  The final implementation will use some ATTiny at 8MHz.

    DDS tuning equation
    DDS tuning equation

    where 

    • fo = output frequency
    • M = phase accumulator
    • fc = clock frequency
    • n = bitwidth of phase accumulator

    Frequency resolution

    So the frequency resolution is :

    The allowable frequency tolerance for the DTMF frequencies is ±1,5 %.  This is maximum 10.4Hz for 697Hz, which is the lowest DTMF tone.

    For 12MHz, fast PWM, the interrupt frequency is 47KHz, phase accumulator is 16-bit.  The frequency resolution is (12MHz / 256) / 65536 = 0.7Hz.  This is more than enough.  Also for 8MHz system, the frequency resolution of the DDS is sufficient for this application.

    Minimum clock frequency

    There is also an upper limit to the frequency that can be generated.  Practically: 

    For DTMF, the maximum frequency is 1633Hz, so fc, which is the frequency of the timer interrupt, should be at least 4.9KHz.

    Comparison of PWM-modes for generating DDS

    Below you can find two screenshots that show the difference between fast-PWM and phase-correct-PWM on the Adafruit ProTrinket 3V.  Clearly, the phase correct PWM will need much more filtering to get a clean output signal.  That's because the interrupt frequency in fast-PWM-mode is twice the interrupt frequency of the phase-correct-PWM mode.

    The low pass filter used in all the screenshots is just a simple first order RC-filter: 330ohm with 100nF.  These were just some parts lying around on my desk.  The cutoff frequency is 4.8KHz.

    697Hz DDS, 16bit tuning word, phase-correct PWM, 8bit sine table
    697Hz DDS, 16bit tuning word, phase-correct PWM, 8bit sine table
    697Hz DDS,  16bit tuning word, fast-PWM, 8bit sine table
    697Hz DDS, 16bit tuning word, fast-PWM, 8bit sine table

    Sine table

    To avoid the time consuming operation of calculating a sine wave in real time, the values are precalculated and stored in flash.

    The original implementation of which you can see screenshots above had a sine table with 256 values.  To save space in flash, this has been reduced to 128 values.  There's no noticeable difference in the output.

    The pwm resolution of timer2 in the AVRMEGA is 8bit.  The original sine table was normalized to 8bit, i.e.  the sine values were in the range [0..255].  For application in DTMF, two sine waves must be added.  The 8bit sine wave values will overflow.  To prevent this, the sine table has been normalized to 7bit, i.e. [0..127].

    Final output

    Waveform of DDS output while generating '0' (941 + 1336 Hz)

  • Measurements on commercial hardware

    Christoph Tack12/24/2017 at 19:31 0 comments

    Test environment

    As the design process will require measurements and manipulations on a potential high voltage telephone line, we can make it easy for ourselves by making a complete test setup on our test table.  You probably don't want to destroy the SLIC in your VOIP Box, so we'll be using a separate SLIC-module.

    The Silvertel AG1171 is a very simple to use SLIC-module.  It might be hard to get as a hobbyist.  The R-Tone KS0835F is fully compatible and available from the usual Chinese channels.

    Modular jack RJ11

    Info can be found on Wikipedia

    • pin 3 : RED : RING : -
    • pin 4 : GREEN : TIP : +

    So much for the standard, the Bbox2 VOIP-gateway uses reverse polarity.

    Connecting the SLIC

    For the KS0835F this becomes:

    • pin 1 : RING = RJ11, pin 3
    • pin 2 : TIP = RJ11, pin 4
    • pin 3 : F/R = +5V ( reverse mode : ring positive with respect to tip).  The drawing on the KS0835F datasheet is correct, the describing text is wrong.
    • pin 4 : RM = GND (no ringing needed)
    • pin 7 : VX = Audio out, decoupled with 220nF to oscilloscope to get rid of the 5VDC-offset
    • pin 9 : GND
    • pin 10 : +5VDC (100nF + 470µF close to pin 9&10 to get rid of the noise on pin 7).  If you only supply with 3V3, the loop current will be considerably smaller, even to that agree that the ProTrinket3V refuses to boot.

    Let's do some basic measurements first on this slic.

    • On hook voltage : TIP=50V, RING=0V
    • Off hook voltage 
      • 330ohm resistor : RING=16.7V, TIP=7.0V => 29mA loop current
      • 220ohm resistor : RING=13.4V, TIP=7.0V => 29mA loop current
    • Connecting resistor from RING to GND
      • 220ohm resistor : RING=6.93V, TIP=0.1V => 31mA
      • 330ohm resistor : RING=10.11V, TIP=0.1V => 32.6mA
    • The RING-pin internally has a current source connected to it.  The TIP-pin seems to have a 7V-zener like functionality.
    • Ring-trip detection circuitry is built in on the RING-pin.  Connecting a 3.8Kohm resistor causes the SHK-pin to come up (13mA?).  There is some hysteresis to turn if off again.

    Injecting audio in the SLIC

    Differential mode input impedance

    Our signal will be injected as a differential voltage to the SLIC.  An audio transformer is used to converted the single ended test signal to a balanced signal.  This signal is then AC-coupled to TIP-RING.  By inserting an 22Kohm sense resistor, we can measure the input impedance of the SLIC.  It appears to be close to 15Kohm.  This impedance is constant to at least 22KHz.

    Transresistance

    The SLIC provides constant current to the load and measures the voltage over that load.  The way to inject data is to modulate the load.  The question is how much do we need to vary the load to get a certain output voltage?

    Measurements have shown that a 30mA current change in the loop leads to a 1V change in the audio output.

    Audio output

    The audio output voltage is the simply the difference of the TIP and RING voltage, transferred to a 5VDC-offset.

    Measuring DTMF signals of a Philips D200 DECT-base station

    Let's see what COTS-devices output when they're generating DTMF-signals.  In order to do that, we connect the Philips D200 DECT-base station to the SLIC's tip&ring.  The oscilloscope is connected to the audio out of the SLIC.

    The screenshot shows a screen capture of the SLIC's audio out, while the Philips D200 is dialing "1".  The FFT-shows energy on 700Hz (actually 697Hz) and 1200Hz (actually 1209Hz).

    • Signal amplitude : 1.8Vpp
    • Tone duration : 80ms

    This screenshot is measured on the same signal.  This time, the phone is dialing "12".

    • Pause duration : 80ms

    The SLIC audio conversion relative gain is 0dB, so it doesn't change the amplitude of the audio on the telephone line.  

    The Philips D200 generates it's DTMF which complies to the standard.

    Bbox2 VOIP...

    Read more »

  • Coupling audio to telephone line

    Christoph Tack12/23/2017 at 19:20 0 comments

    The trouble with telephone lines is they carry relatively small audio signals and high voltage ringing signals.  If the circuitry is placed in parallel with the telephone line, it has to deal with the ringing voltage.  At the same time, the circuit must be low-Z enough to inject audio signals.

    The alternative option chosen here is to design circuitry that sits in series with the telephone line.  The advantages are:

    • No current consumption on hook.
    • Easy way to feed electronics using a zener diode (only off-hook and in between DTMF-bursts).
    • High ringing voltage is no longer an issue.  The maximum voltage over the circuit is limited by the zener diode.

    The SLIC provides a 30mA current loop, that's I1.

    U1 is the variable load, modulated by the DTMF-source, U1.  When the horn goes off-hook, the connected telephone closes the loop with a 300ohm resistor.  The current through the loop will rise to 30mA.  This causes the voltage over D1 to rise to 4.7V.  The MCU will startup.  U1 will start sinking considerable current.  The rest of the current will be used to power the electronics.  The DC-bias current through U1 can be set with R2 and R3.  Check that during DTMF-transmitting, the output voltage (VOUT) doesn't exceed the zener voltage.  The zener will limit the VOUT and distort the signal.

    When transmitting DTMF, R4 and R5 set the amplitude of the DTMF-signal voltage on the current loop.

    4.7nF caps will be added in parallel with R5 and to the base of U1 to filter the HF-noise of the PWM-output of the MCU.

View all 9 project logs

Enjoy this project?

Share

Discussions

aelig wrote 10/25/2023 at 21:39 point

Hello, I would like to better understand your explanation and how it works, if I buy a pcb with the files provided on your github:

1 - will there already be ports to connect cables on the motherboard or is it something to add in addition (by buying it somewhere or I'm not sure)
2 - is it plug and play, or is there a firmware to be added?
Thanks in advance
PS: if there are any mistakes in the message, it's because I'm French and I do my best with English.

  Are you sure? yes | no

Christoph Tack wrote 02/20/2023 at 19:54 point

Thanks for your input, Patrick.  I'll give the source code an update and recheck the SOD123 package of the BAT46.

  Are you sure? yes | no

Patrick wrote 02/01/2023 at 19:19 point

I just built this project in January of 2023. I have some old pulse dial equipment including an old 300 baud modem I built in 1984 that I like to keep in operation. This circuit fits that need.

I have some input to contribute. First, my Ethernet to Phone device kept timing out on me while dialing the 10 digit phone number. After a look at the source code I see that you can change the mode to 0 by grounding pin 7 of U2. This sends the DTMF tone after each digit. Also, mode 1 seems to wait a very long time (3s) after aggregating the number. I recommend changing pulse-dtmf-converter.ino, line 67, from + 3000 to + 1200.

Next, a BOM. I didn't see one so I will provide part numbers that are valid for mouser. Note that the PCB was designed for hand solder of larger resistors than 0603 but I use that size on other projects so I selected that size. They do fit on this PCB. Also, the solder pads for the BAT46WH (D1-D5) are very small and hard to hand solder. I recommend bending the legs of the BAT46WH under the part before soldering. Here is the BOM

           Qty per
Ref.         unit    Mouser Part Number
X1              1       710-830050510
C1              1       232-63AX470MEFC8X75
C2             1       581-06031C682K4T2A
C3,C6       2       77-VJ0603Y332KXACBC
C4,C5,C7  3       603-CC603JRX7R9BB104
C8,C9       2       80-C0603C180J5G7867
D1-D5       5        833-BAT46WHE3-TP
R1              1        603-RC0603FR-1327KL
R2             1        603-RC0603FR-0715KL
R3             1        603-RC0603FR-0756KL
R4             1        603-RC0603FR-071KL
R5             1        603-RC0603FR-1339KL
R6-R14      9       603-RC0603FR-1010KL
Q1             1        771-BC856BW115
U1             1         556-ATTINY85-20SU
U2,U3       2       863-TLV431CSN1T1G
U4             1        579-MCP6022T-E/SN

Building with Arduino IDE (tested with version 2.0.3):

=============================================

Use File...Preferences to add the following Additional Boards Manager URL:

https://raw.githubusercontent.com/damellis/attiny/ide-1.6.x-boards-manager/package_damellis_attiny_index.json

Use the Boards Manager icon on the left to add the Board Manager attiny by David A. Mellis

Use the Library Manager icon on the left to add the Library Bounce2 by Thomas O Fredericks
Add the line '#define ARDUINO_AVR_ATTINYX5 true' to timer.h

After a successful compile, use the menu option Sketch...Export Compiled Binary to dump the compiled output to the sketch folder. The output will be in the folder build/attiny.avr.ATtinyX5.

You can build your own programmer

================================

 (see https://harald.ist.org/howto/avr/vusbtiny-isp/index.html - BUT DON'T CLICK on links to simpleavr.com. Go to https://www.instructables.com/VUSBTiny-AVR-SPI-Programmer/ instead)

- Use avrdude to program U1. If you buy a Digispark Kickstarter ATTINY85, be aware that pins 2 and 3 are swapped from the Harald Markus Wirth design and you'll have to re-compile the code after changing the pin definitions. You can find the source code through a 2020 snapshot at https://web.archive.org/web/*/https://sites.google.com/a/simpleavr.com/simpleavr/avr/vusbtiny. Click to download vusbtiny.tgz and wait for the redirect.

- To test your own programmer, use the following command to read chip fuses:

avrdude -p t85 -c usbtiny -U lfuse:r:low_fuse_val.hex:h -U hfuse:r:high_fuse_val.hex:h -U efuse:r:e_fuse_val.hex:h -U lock:r:lock_fuse_val.hex:h

- To flash U1 with your own programmer, use the following command:

avrdude -p t85 -c usbtiny -P usb -U flash:w:pulse-dtmf-converter/build/attiny.avr.ATtinyX5/pulse-dtmf-converter.ino.hex -U efuse:w:0xff:m -U hfuse:w:0xd5:m -U lfuse:w:0xff:m

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates