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 display_nums2 by
stepper.h
- Committer:
- billymark
- Date:
- 2018-03-09
- Revision:
- 4:a01cf485b9d9
- Parent:
- 2:8a0f128f4be5
File content as of revision 4:a01cf485b9d9:
#ifndef STEPPER_H
#define STEPPER_H
#define STP_CW 1
#define STP_CCW -1
#define DRV8806_MODE 0 //mode
#define DRV8806_FREQ 1000000 //frequency
#define DRV8806_BITS 8, //num of bits
void stp_init();
void stp_step(int direction);
#endif
