How to Connect Arduino with ProtoPie Connect

  1. ProtoPie Connect can communicate with Arduino devices via serial (USB) connection. The most typical setup would be connecting the Arduino to the USB port of PC/machine running ProtoPie Connect.

  2. Use ProtoPie Connect’s Connect Arduino menu to establish connection with the Arduino hardware.

    Screen Shot 2021-12-20 at 7.07.46 PM.png

  3. The serial communication between ProtoPie Connect and Arduino happens in “Message||Value” format. If the intention is to send a message without a value, “Message” will suffice.

  4. All Serial printed ****content from the Arduino will be sent to ProtoPie Connect, which will be relayed onto the prototypes. Most commonly used method for this use case is Serial.println().

  5. Messages from ProtoPie Connect will also communicate with the Arduino in “Message||Value format, so if the Arduino wants to do something with these messages it needs to have code to parse these messages.

Example

arduino-Receiving-messages.zip

20211028_103359.mp4