Removed api key from -ino file.

This commit is contained in:
Romedius Weiss 2013-02-04 21:12:28 +01:00
parent a10339abc3
commit 16eb2040ed
3 changed files with 11 additions and 2 deletions

4
.gitignore vendored
View file

@ -15,3 +15,7 @@
*.exe *.exe
*.out *.out
*.app *.app
#other
TSI_inout_ino/APIKey.h
*~

View file

@ -0,0 +1,4 @@
// rename this file to "APIKey.h" and fill in a real key!
String thingtweetAPIKey = "myThingspeakKey";

View file

@ -28,6 +28,8 @@ Example sketches from Arduino team, Ethernet by Adrian McEwen
#include <Ethernet.h> #include <Ethernet.h>
#include <EthernetUdp.h> #include <EthernetUdp.h>
#include "APIKey.h"
// Local Network Settings // Local Network Settings
byte mac[] = { 0xD4, 0x28, 0xB2, 0xFF, 0xA0, 0xA1 }; // Must be unique on local network byte mac[] = { 0xD4, 0x28, 0xB2, 0xFF, 0xA0, 0xA1 }; // Must be unique on local network
@ -36,7 +38,6 @@ unsigned int localPort = 8888; // local port to listen for UDP packets
// ThingSpeak Settings // ThingSpeak Settings
char thingSpeakAddress[] = "api.thingspeak.com"; char thingSpeakAddress[] = "api.thingspeak.com";
String thingtweetAPIKey = "21I4R9UJQZJSC60Y";
// Variable Setup - check if these Variables are needed // Variable Setup - check if these Variables are needed
long lastConnectionTime = 0; long lastConnectionTime = 0;
@ -78,7 +79,7 @@ int ethernetstatus = -1;
int readStatus=0; int readStatus=0;
// Twitter message, intermediate part // Twitter message, intermediate part
String tmsg = " Hackerspace @ Freies Theater at "; String tmsg = " Hackerspace at ";
//debug options //debug options
boolean debug = false; boolean debug = false;