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
#include <SPI.h> | |
#include <Ethernet.h> | |
//******************************************************************************** | |
// Webserver section | |
//******************************************************************************** | |
// MAC address from Ethernet shield sticker under board | |
byte mac[] = { 0x90, 0xA2, 0xDA, 0x00, 0x6D, 0x7E }; | |
IPAddress ip(10, 26, 12, 200); // IP address, may need to change depending on network | |
EthernetServer server(80); // create a server at port 80 |
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
from appscript import app | |
from datetime import datetime | |
import urllib2 | |
import os | |
import uuid | |
import sh | |
def removeOldPicture(): | |
try: |