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
| int VQ; | |
| int ACSPin = 0; | |
| void setup() { | |
| Serial.begin(115200); | |
| VQ = determineVQ(ACSPin); //Quiscent output voltage - the average voltage ACS712 shows with no load (0 A) | |
| delay(1000); | |
| } | |
| void loop() { |
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
| <?php | |
| function retrieve_graph($input) { | |
| $json = file_get_contents('http://graph.facebook.com/' . $input); | |
| $json = json_decode($json); | |
| if (isset($json->error) || !$json) return null; | |
| return $json; |