Skip to content

Instantly share code, notes, and snippets.

View awong1900's full-sized avatar
🎯
Focusing

JumpTen awong1900

🎯
Focusing
View GitHub Profile
@awong1900
awong1900 / bootcamp_example.py
Last active August 17, 2016 02:57
wio exmaple
# turn on relay with Grove_Relay
import requests
token = "your device token" # from you API on phone
url = "https://iot.seeed.cc/v1/node/GroveRelayD0/onOff/1?=access_token=%s" %token
r = request.post(url)
print r.json()
@awong1900
awong1900 / config.yaml
Created January 3, 2016 16:15
Implement scheduler with python's tornado on SAE (http://www.sinacloud.com/doc/sae/python/tutorial.html)
name: task
version: 1
worker: tornado
@awong1900
awong1900 / 01.png
Last active November 26, 2015 03:27
article
01.png
@awong1900
awong1900 / helloworld.c
Created April 22, 2013 07:17
personal code test.
include <stdio.h>
void mian()
{
printf("Hello world!");
}