William Singleton
/
595_Lab_8_Part_I_Thread
Libraries required to run 595 lab 8
main.cpp
- Committer:
- wssingle
- Date:
- 2020-05-03
- Revision:
- 13:f8cee8ecb4f0
- Parent:
- 12:4e3f46e615d9
File content as of revision 13:f8cee8ecb4f0:
#include "mbed.h" #include "rtos.h" DigitalOut led1(LED1); DigitalOut led2(LED2); Thread thread; void led2_thread() { while (true) { led2 = !led2; Thread::wait(1000); } } int main() { thread.start(led2_thread); while (true) { led1 = !led1; Thread::wait(500); } }