We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, great work - but some features I really need are missing: SMS https://www.freedesktop.org/software/ModemManager/api/latest/gdbus-org.freedesktop.ModemManager1.Sms.html
Location (Including GPS data) https://www.freedesktop.org/software/ModemManager/api/latest/gdbus-org.freedesktop.ModemManager1.Modem.Location.html
and finally a possibility to watch the states: https://www.freedesktop.org/software/ModemManager/api/latest/ModemManager-Flags-and-Enumerations.html#MMModemState
and I also realized that I need to change following line to get your code working: https://github.com/parrotmac/go-modemmanager/blob/master/pkg/modem/manager.go#L176 to err := bus.Call(callModemLocationGetLocation, 0).Store(resp)
err := bus.Call(callModemLocationGetLocation, 0).Store(resp)
The text was updated successfully, but these errors were encountered:
thank you for your initial work. i used the last week to create a golang modem manager wrapper which got the functionalities I need. https://github.com/maltegrosse/go-modemmanager
Sorry, something went wrong.
No branches or pull requests
Hey, great work - but some features I really need are missing:
SMS
https://www.freedesktop.org/software/ModemManager/api/latest/gdbus-org.freedesktop.ModemManager1.Sms.html
Location (Including GPS data)
https://www.freedesktop.org/software/ModemManager/api/latest/gdbus-org.freedesktop.ModemManager1.Modem.Location.html
and finally a possibility to watch the states:
https://www.freedesktop.org/software/ModemManager/api/latest/ModemManager-Flags-and-Enumerations.html#MMModemState
and I also realized that I need to change following line to get your code working:
https://github.com/parrotmac/go-modemmanager/blob/master/pkg/modem/manager.go#L176
to
err := bus.Call(callModemLocationGetLocation, 0).Store(resp)
The text was updated successfully, but these errors were encountered: