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.
Dependencies: mbed
transfer.h
- Committer:
- baba2357
- Date:
- 2016-03-25
- Revision:
- 1:86d25c1c4bd5
- Child:
- 2:bed6b204e64c
File content as of revision 1:86d25c1c4bd5:
#ifndef TRANSFER_H
#define TRANSFER_H
DigitalIn push(PA_12);
bool pushed_number=0;
void transfer();
#endif
void transfer(){
push.mode(pullup);
if(push.read()==0) pushed_number=!pushed_nuber;
}