This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This code is for sending data from OpenFrameworks to Arduino. This will package 3 values for the arduino | |
//to read as a string. This code supports values from -2,147,483,648 to 2,147,483,647, not just 0-255! | |
//(since we're storing them on the arduino side as long variables) | |
//------------------------------OpenFrameworks string sending------------------------------ | |
//The code below will send the values 12345, 0 and 255. | |
//----------in header file---------- |
NewerOlder