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
Fork of circle_war_ver_A_NUCLEO_ by
transfer.h
- Committer:
- baba2357
- Date:
- 2016-04-05
- Revision:
- 14:3403ce49a37a
- Parent:
- 8:554e3d643b2d
File content as of revision 14:3403ce49a37a:
#ifndef TRANSFER_H #define TRANSFER_H #include "pin_file.h" DigitalIn push(PA_12); bool pushed_number=0; void transfer(); #endif void transfer(){ if(push.read()==0){ pushed_number=!pushed_number; wait(0.5); } }