tags:

views:

151

answers:

1

Is there a class for AT communication with devices? Like a class which encapsulates AT commands into a .NET interface?

It needs to be also able to parse AT responses such as Network Lists.

Example : +COPS=? returns a list of carriers and it would take some pretty complex regex to actually parse it. Instead of writing my own lib I want to use a premade one.

AT Commands I am refereeing to are these : http://en.wikipedia.org/wiki/Hayes_command_set

+3  A: 

Try this one: GSM Communication Library. Apart from built in commands it allows you to send any command you need.

Giorgi
I think that's it
Nick Brooks
Can't find the source though :(
Nick Brooks
@Nick - Source code of what?
Giorgi
That library you linked
Nick Brooks
Do you need the source code itself? Why not just add the dll as reference and start using it?
Giorgi
@Nick - Did you ask the developer if source code is available?
Mike Chess