Skip to content

Commit

Permalink
Separated privated settings to PrivateSettings.pde
Browse files Browse the repository at this point in the history
  • Loading branch information
Shigeru Kobayashi authored and Shigeru Kobayashi committed Mar 22, 2011
1 parent bb8975b commit ee2598d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 1 addition & 7 deletions processing/PachubeGeigerCounter/PachubeGeigerCounter.pde
Expand Up @@ -2,7 +2,7 @@
// to the Pachube server
//
// Note:
// This example is for SparkFun's SEN-09848
// This example is for SparkFun's SEN-09848 (firmware: v13)
//
// Requirement:
// EEML for Processing
Expand All @@ -25,12 +25,6 @@ Serial serialPort;
// Create a DataOut object to upload data to the Pachube server
DataOut dataOut;

// The feed URL
final String feedUrl = "http://api.pachube.com/v2/feeds/20337.xml";

// The shared secure key (Permissons: put, Expires: 03/31/11 11:59PM)
final String apiKey = "zJ1qvUtakkVH6aEIZft805NP2C5RrRhYTP98tC8S6i8";

// The tags for feeds
final String tags = "sensor:type=radiation,sensor:model=lnd-712";

Expand Down
6 changes: 6 additions & 0 deletions processing/PachubeGeigerCounter/PrivateSettings.pde
@@ -0,0 +1,6 @@
// The feed URL
final String feedUrl = "http://api.pachube.com/v2/feeds/12345.xml";

// The shared secure key
final String apiKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";

0 comments on commit ee2598d

Please sign in to comment.