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
const byte numChars = 32; | |
char receivedChars[numChars]; // an array to store the received data | |
boolean newData = false; | |
int dataNumber = 0; // new for this version | |
void setup() { | |
pinMode(5, OUTPUT); | |
pinMode(4, OUTPUT); |
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
# Author: Sunny Chakraborty (@sunnyc7) | |
# Note: No one has written Exchange Web Services Scripts EVER without thanking Glenn Scales and Mike Pfeiffer :). | |
# Hence..thanks Glenn and Mike. | |
# Glenn Scales Blog > http://gsexdev.blogspot.com/ | |
# Mike Pfeiffer blog > http://www.mikepfeiffer.net/ | |
#region Helper Functions | |
Function Delete-MessageItem { |