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 PVD_Driver1
main.cpp
- Committer:
- mgimple
- Date:
- 2021-11-11
- Revision:
- 0:cc9996bbf162
File content as of revision 0:cc9996bbf162:
#include "mbed.h"
#include "PVD_Driver.h"
Serial pc(USBTX, USBRX);
PVD photocell(p20);
int main() {
while(1) {
pc.printf("Resistance = %f Ohms\r\n",photocell.Res());
}
}
