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.
structures.h
- Committer:
- skirmish
- Date:
- 2016-12-20
- Revision:
- 14:19e36b53e76a
- Parent:
- 12:1c7b59097090
File content as of revision 14:19e36b53e76a:
#ifndef STRUCTURES_H #define STRUCTURES_H struct testData { char startByte ; char targetAddress ; char sourceAddress ; char data[4]; }; struct Commands { char MotorDown[5]; char MotorUp[5]; char MotorStop[1]; char ArrowDown[2]; char ArrowUp[2]; char LedOn[1]; char LedOff[1]; char Lock[1];//0x00 unlock , 0x01 lock }; #endif