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.
main.cpp@0:6fe791dc9958, 2020-04-27 (annotated)
- Committer:
- sjuzyz
- Date:
- Mon Apr 27 13:42:41 2020 +0000
- Revision:
- 0:6fe791dc9958
- Child:
- 1:3f6881bbac40
demo
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| sjuzyz | 0:6fe791dc9958 | 1 | #include "mbed.h" |
| sjuzyz | 0:6fe791dc9958 | 2 | #include "N5110.h" |
| sjuzyz | 0:6fe791dc9958 | 3 | N5110 lcd(PTC9,PTC0,PTC7,PTD2,PTD1,PTC11); |
| sjuzyz | 0:6fe791dc9958 | 4 | int main() |
| sjuzyz | 0:6fe791dc9958 | 5 | { |
| sjuzyz | 0:6fe791dc9958 | 6 | lcd.init(); |
| sjuzyz | 0:6fe791dc9958 | 7 | lcd.printString(" Hello ",0,1); |
| sjuzyz | 0:6fe791dc9958 | 8 | lcd.refresh(); |
| sjuzyz | 0:6fe791dc9958 | 9 | |
| sjuzyz | 0:6fe791dc9958 | 10 | } |