Rev 349 | Rev 404 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 349 | Rev 379 | ||
---|---|---|---|
Line 82... | Line 82... | ||
82 | * write an ascii <string> from progmen at <x>/<y> to MAX7456 display memory |
82 | * write an ascii <string> from progmen at <x>/<y> to MAX7456 display memory |
83 | */ |
83 | */ |
84 | void write_ascii_string_pgm(uint8_t, uint8_t, char*); |
84 | void write_ascii_string_pgm(uint8_t, uint8_t, char*); |
Line 85... | Line 85... | ||
85 | 85 | ||
- | 86 | /** |
|
- | 87 | * write an <string> from progmen at <x>/<y> downwards to MAX7456 display memory |
|
- | 88 | */ |
|
- | 89 | void write_string_pgm_down(uint8_t, uint8_t, char*, uint8_t); |
|
- | 90 | ||
86 | /** |
91 | /** |
87 | * Write only some digits of a unsigned <number> at <x>/<y> to MAX7456 display memory |
92 | * Write only some digits of a unsigned <number> at <x>/<y> to MAX7456 display memory |
88 | * <num> represents the largest multiple of 10 that will still be displayable as |
93 | * <num> represents the largest multiple of 10 that will still be displayable as |
89 | * the first digit, so num = 10 will be 0-99 and so on |
94 | * the first digit, so num = 10 will be 0-99 and so on |
90 | * <pad> = 1 will cause blank spaced to be filled up with zeros e.g. 007 instead of 7 |
95 | * <pad> = 1 will cause blank spaced to be filled up with zeros e.g. 007 instead of 7 |