-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathREADME
More file actions
26 lines (20 loc) · 766 Bytes
/
Copy pathREADME
File metadata and controls
26 lines (20 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
uWave
-----
Contact: seas.upenn.edu emails:
Kevin Conley <kevincon@seas>
Varun Sampath <vsampath@seas>
Ben Shyong <bshyong@seas>
Teddy Zhang <thezhang@seas>
uWave is a texting, Twitter-enabled microwave. See http://uwaved.com
for demo videos and information on how it works.
Code:
See the uWaveArduino PDE for the uWave code. Be sure to edit the
web_settings_template.h file for your own settings. To implement your own
server, there are two HTTP GET requests you need to be able to handle
from the Arduino. One is the start time:
GET /arduino/start?time=%d HTTP/1.0
where %d is an integer representing seconds. The other is the finish
notification:
GET /arduino/finish HTTP/1.0
This code was implemented on an Arduino Duemilanove using the arduino-0023
SDK.