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
/* | |
* | |
State change detection (edge detection) | |
http://www.arduino.cc/en/Tutorial/ButtonStateChange | |
*/ | |
const int buttonPin = 3; | |
const int outPin = 13; |
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 | |
// This is just an example of reading server side data and sending it to the client. | |
// It reads a json formatted text file and outputs it. | |
//$string = file_get_contents("data.json"); | |
//echo $string; | |
// Instead you can query your database and parse into JSON etc etc |
OlderNewer