This file contains 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 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
/* | |
* CFArray+Sequence.swift | |
* Alexis Aubry Radanovic | |
*/ | |
import Foundation | |
import CoreFoundation | |
extension CFArray: Sequence { | |