https://github.com/umarquez/go-ph0n3
Virtual DTMF phone dialing simulator / tones generator
https://github.com/umarquez/go-ph0n3
Last synced: 11 months ago
JSON representation
Virtual DTMF phone dialing simulator / tones generator
- Host: GitHub
- URL: https://github.com/umarquez/go-ph0n3
- Owner: umarquez
- License: apache-2.0
- Created: 2019-07-10T06:01:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-10T22:08:25.000Z (almost 7 years ago)
- Last Synced: 2025-04-03T15:43:37.696Z (about 1 year ago)
- Language: Go
- Size: 15.6 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-ph0n3
Virtual DTMF phone dialing simulator / tones generator
it is uses [Oto lib](https://github.com/hajimehoshi/oto) (by [Hajime Hoshi](https://star.one/)) as sound lib and is based on [Oto's example](https://github.com/hajimehoshi/oto/blob/master/example/main.go) which is licensed under the Apache License Version 2.0.
## Example:
```golang
package main
import go_ph0n3 "github.com/umarquez/go-ph0n3"
func main() {
phone := go_ph0n3.NewPh0n3(nil).Open()
_ = phone.DialString("13243546")
<-phone.Close
}
```