Git Product home page Git Product logo

gurux.sms's Introduction

See An Gurux for an overview.

Join the Gurux Community or follow @Gurux for project updates.

Open Source GXSMS (Short Message Service) media component, made by Gurux Ltd, is a part of GXMedias set of media components, which programming interfaces help you implement communication by chosen connection type. Gurux media components also support the following connection types: network (TCP/IP and UDP), serial port and terminal.

For more info check out Gurux.

We are updating documentation on Gurux web page.

If you have problems you can ask your questions in Gurux Forum.

Build

If you want to build example you need Nuget package manager for Visual Studio. You can get it here: https://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c

Simple example

Before use you must set following settings:

  • PhoneNumber
  • PortName
  • BaudRate
  • DataBits
  • Parity
  • StopBits
  • Pin code

It is also good to listen following events:

  • OnError
  • OnReceived
GXSMS cl = new GXSMS();
cl.PhoneNumber = "Phone number";
cl.PortName = "COM1";
cl.BaudRate = 9600;
cl.DataBits = 8;
cl.Parity = System.IO.Ports.Parity.None;
cl.StopBits = System.IO.Ports.StopBits.One;
cl.Open();

SMS message is send with send command:

Gurux.SMS.GXSMSMessage msg = new Gurux.SMS.GXSMSMessage();
msg.Data = "Hello World!";
msg.Number = "Phone number";
cl.Send(msg);

In default mode received SMS message is coming as asynchronously from OnReceived event.

cl.OnReceived += new ReceivedEventHandler(this.OnReceived);
/// <summary>
/// Show received SMS message.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>        
private void cl_OnReceived(object sender, ReceiveEventArgs e)
{
	try
	{
        GXSMSMessage msg = e.Data as GXSMSMessage;
        ListViewItem it = MsgList.Items.Add(msg.Data);
        it.SubItems.Add(msg.PhoneNumber);
        it.SubItems.Add(msg.Time.ToString());
	}
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

Data can be send as syncronous if needed:

lock (cl.Synchronous)
{
	Gurux.SMS.GXSMSMessage msg = new Gurux.SMS.GXSMSMessage();
	msg.Data = "Hello World!";
	msg.Number = "Phone number";
	cl.Send(msg);
	//Wait answer for 60 seconds.
	Gurux.SMS.GXSMSMessage reply = cl.Receive(60)
}

gurux.sms's People

Contributors

gurux-kurumi avatar gurux01 avatar kaury avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.