Sunday, June 28, 2009

Send texts from Huawei modems with PyHumod!

Sending text messages from Huawei E220, E270, K3520 and many others has never been easier.
>>> import humod
>>> modem = humod.Modem()
>>> modem.enter_text_mode()
>>> modem.send_text('+353987654321', 'Are you free for dinner?')
Check out PyHumod Wiki for more info and examples examples.
-

PyHumod mailing list now active!

Hello Huawei modems and Python users!

If you have any support or development questions regarding pyhumod, you can subscribe to it at the following URL

http://groups.google.com/group/pyhumod

... or by entering your e-mail in the mailing list promotion box on the right hand side of this blog.


Saturday, June 27, 2009

First beta of pyhumod released!

I'm pleased to present the first early release of PyHumod!

Installation instructions:
http://code.google.com/p/pyhumod/

Downloads page:
http://code.google.com/p/pyhumod/downloads/list

_

Saturday, June 20, 2009

Detecting Huawei Interfaces in Linux

A recent experiment with HAL/DBUS. The script finds Huawei related serial devices and lists them on the screen. I'm going to use this code in pyhumod.

Tuesday, June 16, 2009

PyHumod. Things you don't suspect your modem can do.


I came to a conclusion lately that I want to understand Huawei modems better and come up with something that can take full advantege of their features. Earlier this month I started developing a Python package, pyhumod, for talking to my Huawei three-gee modems. It will provide an easy to use yet powerful interface and allow you to develop your own apps for controlling Huawei modem devices. I will release the initial version before the 1st of August, so stay tuned. Some of the features that the package supports:
  • Sending and receiving text messages,
  • Event handling (receiving calls, interpretation of texts messages based on pattern matching),
  • Advanced settings manipulation.
The coding style conforms to PEP8 and PEP257.