View splitfiles.cpp
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
// Name: Marty Miller | |
// Program: This program fixes a transcription file that needs special formatting | |
/* | |
Purpose: We will be dealing with file input and output, as well as character | |
handling. It separates transcripts into separate files by pages. | |
*/ | |
#include <fstream> | |
#include <iostream> | |
#include <string.h> |
View update-website
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
#!/bin/bash | |
# small script used to update files for website | |
scp -r ~/website/. user@website.com:/var/www/ |
View sendTest_418_Works.ino
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
//************** | |
//IR sent demo v1.0 | |
//Connect the IR sent pins to D3 for this demo | |
//By:http://www.seeedstudio.com/ | |
//****************************** | |
#include <IRSendRev.h> | |
void setup() | |
{ | |
//enableIROut(38); |
View revTest_418_Works.ino
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
//************** | |
//IR receive demo v1.0 | |
//Connect the IR sent pins to A4 for this demo | |
//By:http://www.seeedstudio.com/ | |
//****************************** | |
#include <IRSendRev.h> | |
//#include <IRSendRevInt.h> | |
void setup() | |
{ |