im new in c# and i wanna right a code for have a voice call through the GSM modem , actually don't know about how to receive and send voice or stream that ,if any one knows about how to do it please help me with this problem.
i just found this but didn't understand enough to develop my application.
every thing i know is just to send command ,unfortunately i do not even know the AT-Commands.
Port gsmPort=new Port();
gsmPort.Name="COM3";
gsmPort.open();
gsmPort.writeLine("AT\r");
I can suggest to you read these links:
http://www.zeeman.de/wp-content/uploads/2007/09/ubinetics-at-command-set.pdf
2.https://www.sparkfun.com/datasheets/Cellular%20Modules/AT_Commands_Reference_Guide_r0.pdf
https://www.youtube.com/watch?v=_3Vn_YEh3jM
Related
I have to implement a biometric system. Im using ZKTeco LP600 time attendance device and ZKTeco SDK (ZKemKeeper.dll) here its the situation:
When I try to connect to device with no security password(the one who configure in the device > menu > communication > security > 6 digit Password ) I achieve it without any trouble.
But when I put some password things go wrong...I recive the error -6
Im using: bool isConn= axCZKEM1.Connect_Net(devIP,4370);
This is the answer to my own question if someone need the info in the future. After checking the class dictionary (Which I found in a remote place in the zk page) there's a method call SetCommPassword(int password) which you must set before use the Connect_Net method. Theres many strange things in this dll and im still trying to understand some....
I have a device called 'Nordic ID Stix'.
But i dont really know how can i read from it!
Of course first i try using
System.IO.Ports.SerialPort
but it dont work.
(I cant start reading when antenna is turn off... )
Device is working and read rfid (i using AnyReader to read codes and it was work)
But now i need to write some software to reading from RFID.
I tried to use:
Phidget
System.IO.Ports.SerialPort
and now i want to try a :
Microsoft.SensorServices.Rfid.Utilities
but i cant find it anywhere in VisualStudio 2013 or anything else.
Please help me.
P.S. I find very much 'tutorials' which redirects to a blank page... :(
You will need the SDK (NurDistribution) that you can download from their extranet page (login required), or you will send the email to Nordic ID support (support#nordicid.com).
I am trying to change the static send port URI from BizTalk admin console by opening the configuration, I am able to do change the URI.
But if I do the send port URIchange using WMI script in c# or directly update on bts_sendport_transport, it changes the URI in database and the change appears in the send port list also.
Bur when I open the MQ configuration, I can still find the old URI in MQ definition.
Can any one please help me to change the MQ definition in send ports without using admin console?
I think your approach to the problem is wrong they invernted dynamic ports for your problem. since your question not clear enough may be I don't understand your problem clearly.
Here is link for Dynamic Ports and Usage http://www.codeproject.com/Articles/502425/BizTalk-Static-and-Dynamic-FTP-Send-Port-Sample
you must focus on last part
Msg_DynamicSend(FTP.CommandLogFileName) = "D:\\BiztalkLogs\\FTPLog\\DynamicFTPLog.txt";
Msg_DynamicSend(FTP.UserName) = "FTPUSER";
Msg_DynamicSend(FTP.Password) = "Pass1234";
Msg_DynamicSend(FTP.SpoolingFolder) = "/IN/";
Msg_DynamicSend(FTP.RepresentationType) = "ASCII";
DynSendPort(Microsoft.XLANGs.BaseTypes.Address)= "ftp://inhydeshrilata";
DynSendPort(Microsoft.XLANGs.BaseTypes.TransportType) = "FTP"
I am initiating a call using Lync Sdk,
I am making an application that dials to an automated voice message service and i want to dial numbers after the call is initiated to automatically choose menu options.
so i need to basically dial digits from code after the call is initiated.
any ideas?
First, you need to get to the AudioChannel on the Conversation:
var avModality = (AVModality)conversation.Modalities[ModalityTypes.AudioVideo];
var audioChannel = avModality.AudioChannel;
Then you can send DTMF tones down the channel:
avModality.AudioChannel.BeginSendDtmf("1", SendDtmfComplete, null));
Bear in mind that the service on the other end may change the order of the menu options, or may require a delay before sending the tone.
If you think this is the right answer, please mark it as accepted, to help anyone else browsing the question. Thanks!
I have a client that is supposed to grab data from a micro-controller ( Arduino if you are familiar with it ), that transmits once a second a line of values, and send that data to a server to which the client is connected .
How should i do that ? The micro-controller when connected to the PC , 'shoots' data on one of the COMs.. should i approach the problem as a client-server ? I mean should i connect with my client to the micro-controller passing the mcontroller's port ? And if so, can anyone give me a link to such a solution ?
From what you're writing You could just download a port-analyzer to check what's coming in.
http://www.serial-port-monitor.com/
You can also write a simple macro in excel that grab data and output to sheet,
just open the com-port with the right settings.
If it's an 24/7-application, I'd recommend a simple complied program running as a service, .NET or maby compiled script, autoit3 or similar (if you're on win32).
http://www.autoitscript.com/forum/topic/19769-phone-dialer-using-com-to-modem-on-serial-port/
(3:rd post, Martin)
Regards,
//t