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 01_Embebidos by
draw.h
- Committer:
- Bethory
- Date:
- 2018-03-12
- Revision:
- 3:3665eb7346e2
- Child:
- 6:87a37f4163bd
File content as of revision 3:3665eb7346e2:
#ifndef DRAW_H #define DRAW_H #include "mbed.h" #define MAXPOS 50 // en milimetros #define POSDRAW 10 void init_servo(); void draw(); void nodraw(); void vertex2d(uint8_t x, uint8_t y); void home(); void initdraw(float x, float y); void put_sstime(uint8_t vtime); #endif // DRAW_H