DTMF tones not sending
#2
(01-22-2021, 06:24 PM)hiimtye Wrote: tried to login to my voicemail but couldnt send dial tones so i had to log in using my landline

also the menu is noticeably smaller than the main menu for in call and some others, but its especially noticeable while i try to dial with my construction worker hands in the short timeout for the vm prompt

I've noticed this as well. Didn't test with any automated service, just called another phone and listened for beeps (none heard). 

I've been tinkering with a svkbd layout that is just a dialpad. Still figuring out how to work it into the dialing stuff, but I'll get there eventually.

In the meantime, you can bump up the font size in this part of the sxmo_modemcall.sh script:
Code:
dtmfmenu() {
    CALLID="$1"
    DTMFINDEX=0
    NUMS="0123456789*#ABCD"

    while true; do
        PICKED="$(
            echo "$NUMS" | grep -o . | sed '1 iReturn to Call Menu' |
            dmenu "$([ "$WINDOWIFIED" = 0 ] && echo "-c" || echo "-wm")" -l 20 -fn Terminus-20 -c -idx $DTMFINDEX -p "DTMF Tone"
        )"
        echo "$PICKED" | grep "Return to Call Menu" && return
        DTMFINDEX=$(echo "$NUMS" | grep -bo "$PICKED" | cut -d: -f1 | xargs -IN echo 2+N | bc)
        modem_cmd_errcheck -m "$(modem_n)" -o "$CALLID" --send-dtmf="$PICKED"
    done
}

I believe the other menus are size 30.
  Reply


Messages In This Thread
DTMF tones not sending - by hiimtye - 01-22-2021, 06:24 PM
RE: DTMF tones not sending - by MungFuSensei - 01-24-2021, 09:44 PM
RE: DTMF tones not sending - by MungFuSensei - 01-25-2021, 04:54 PM
RE: DTMF tones not sending - by cabbie001 - 01-24-2022, 02:20 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)