You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, I want to turn on a lightbulb. I send some bytes to a serial port.
bool TurnOn(){
_serialportInput.send(...);
// I need a response from serialport device
var somebytes = _serialportInput.read();
bool result = ParseBytes(somebytes);
return result;
}
Each command I send, I need a response. While I find it difficult to do so with this lib. Thanks for your kind reply and sorry for the vague description.
Hi, it is possible to publish a API for request/response communication model?
The text was updated successfully, but these errors were encountered: