Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of OBD21121 by
main.cpp
- Committer:
- takeuz
- Date:
- 2017-02-21
- Revision:
- 1:1d9a04a21027
- Parent:
- 0:ccd2474129f2
- Child:
- 2:d58ef72b4ab0
File content as of revision 1:1d9a04a21027:
#include "mbed.h" DigitalOut myled(LED1); CAN can1(P0_24, P0_25); int main() { while(1) { myled = 1; wait(0.2); myled = 0; wait(0.2); } }