A simple 128x32 graphical LCD program to quickstart with LCD on ARM mbed IoT Starter Kit. This requires mbed Applciation Shield with FRDM-K64F platform.
mbed/FileLike.h@1:eb68c94a8ee5, 2015-04-12 (annotated)
- Committer:
- tushki7
- Date:
- Sun Apr 12 15:45:52 2015 +0000
- Revision:
- 1:eb68c94a8ee5
- Parent:
- 0:60d829a0353a
A simple 128x32 LCD program with ARM mbed IoT Starter Kit;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
tushki7 | 0:60d829a0353a | 1 | /* mbed Microcontroller Library |
tushki7 | 0:60d829a0353a | 2 | * Copyright (c) 2006-2013 ARM Limited |
tushki7 | 0:60d829a0353a | 3 | * |
tushki7 | 0:60d829a0353a | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
tushki7 | 0:60d829a0353a | 5 | * you may not use this file except in compliance with the License. |
tushki7 | 0:60d829a0353a | 6 | * You may obtain a copy of the License at |
tushki7 | 0:60d829a0353a | 7 | * |
tushki7 | 0:60d829a0353a | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
tushki7 | 0:60d829a0353a | 9 | * |
tushki7 | 0:60d829a0353a | 10 | * Unless required by applicable law or agreed to in writing, software |
tushki7 | 0:60d829a0353a | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
tushki7 | 0:60d829a0353a | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
tushki7 | 0:60d829a0353a | 13 | * See the License for the specific language governing permissions and |
tushki7 | 0:60d829a0353a | 14 | * limitations under the License. |
tushki7 | 0:60d829a0353a | 15 | */ |
tushki7 | 0:60d829a0353a | 16 | #ifndef MBED_FILELIKE_H |
tushki7 | 0:60d829a0353a | 17 | #define MBED_FILELIKE_H |
tushki7 | 0:60d829a0353a | 18 | |
tushki7 | 0:60d829a0353a | 19 | #include "FileBase.h" |
tushki7 | 0:60d829a0353a | 20 | #include "FileHandle.h" |
tushki7 | 0:60d829a0353a | 21 | |
tushki7 | 0:60d829a0353a | 22 | namespace mbed { |
tushki7 | 0:60d829a0353a | 23 | |
tushki7 | 0:60d829a0353a | 24 | /* Class FileLike |
tushki7 | 0:60d829a0353a | 25 | * A file-like object is one that can be opened with fopen by |
tushki7 | 0:60d829a0353a | 26 | * fopen("/name", mode). It is intersection of the classes Base and |
tushki7 | 0:60d829a0353a | 27 | * FileHandle. |
tushki7 | 0:60d829a0353a | 28 | */ |
tushki7 | 0:60d829a0353a | 29 | class FileLike : public FileHandle, public FileBase { |
tushki7 | 0:60d829a0353a | 30 | |
tushki7 | 0:60d829a0353a | 31 | public: |
tushki7 | 0:60d829a0353a | 32 | /* Constructor FileLike |
tushki7 | 0:60d829a0353a | 33 | * |
tushki7 | 0:60d829a0353a | 34 | * Variables |
tushki7 | 0:60d829a0353a | 35 | * name - The name to use to open the file. |
tushki7 | 0:60d829a0353a | 36 | */ |
tushki7 | 0:60d829a0353a | 37 | FileLike(const char *name); |
tushki7 | 0:60d829a0353a | 38 | |
tushki7 | 0:60d829a0353a | 39 | virtual ~FileLike(); |
tushki7 | 0:60d829a0353a | 40 | }; |
tushki7 | 0:60d829a0353a | 41 | |
tushki7 | 0:60d829a0353a | 42 | } // namespace mbed |
tushki7 | 0:60d829a0353a | 43 | |
tushki7 | 0:60d829a0353a | 44 | #endif |