pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
/*
|
|
* Description: Request time strings from a can-master
|
|
* and show them in an animation
|
|
* Author: hansi
|
|
*/
|
|
|
|
#ifndef BORG_TIME_H_
|
|
#define BORG_TIME_H_
|
|
|
|
//send a time request packet via can
|
|
void time_request(void);
|
|
|
|
//update time via can, possibly blocking
|
|
uint8_t time_update(void);
|
|
|
|
//display the time
|
|
void time_anim(void);
|
|
|
|
#endif /* BORG_TIME_H_ */
|
|
|