Revert mistake change.

pull/376/head
dinau 2014-06-25 23:00:36 +09:00
parent de7003d6c2
commit 7c99b50e93
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ void flip_2() {
int main() {
led1 = 0;
led2 = 0;
flipper_1.attach(&flip_1, 0.5); // the address of the function to be attached (flip) and the interval (1 second)
flipper_2.attach(&flip_2, 0.5); // the address of the function to be attached (flip) and the interval (2 seconds)
flipper_1.attach(&flip_1, 1.0); // the address of the function to be attached (flip) and the interval (1 second)
flipper_2.attach(&flip_2, 2.0); // the address of the function to be attached (flip) and the interval (2 seconds)
while (true) {
wait(1.0);