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.
Dependencies: mbed JPEGCamera
main.cpp
- Committer:
- seijakunouenimutou
- Date:
- 2019-11-15
- Revision:
- 2:b7411087c261
- Parent:
- 1:a9210ea335cb
File content as of revision 2:b7411087c261:
#include "mbed.h"
#include "JPEGCamera.h"
int main() {
JPEGCamera camera(p9, p10); // TX, RX
LocalFileSystem local("local");
Timer timer;
timer.start();
camera.setPictureSize(JPEGCamera::SIZE320x240);
for (int i = 0; i < 1; i++) {
if (camera.isReady()) {
char filename[32];
sprintf(filename, "/local/pict%03d.jpg",i);
printf("Picture: %s ", filename);
if (camera.takePicture(filename)) {
while (camera.isProcessing()) {
camera.processPicture();
}
} else {
printf("take picture failed\r\n");
}
} else {
printf("camera is not ready\r\n");
}
}
printf("time = %f\n", timer.read());
}