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
| SYSTEM_MODE(SEMI_AUTOMATIC); | |
| #define PIN_POWER A7 //Pin 1 on LCD | |
| #define PIN_SCE A2 //Pin 3 on LCD | |
| #define PIN_RESET A0 //Pin 4 on LCD | |
| #define PIN_DC A1 //Pin 5 on LCD | |
| #define PIN_SDIN A5 //Pin 6 on LCD | |
| #define PIN_SCLK A3 //Pin 7 on LCD | |
| #define PIN_LED D0 //Pin 8 on LCD |
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
| #!/usr/bin/env python | |
| import sys | |
| import time | |
| import csv | |
| import sqlite3 | |
| from google.appengine.datastore import entity_pb | |
| from google.appengine.api import datastore |
NewerOlder