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
- Committer:
- arcturus
- Date:
- 2021-12-26
- Revision:
- 0:7d2585f73f2e
File content as of revision 0:7d2585f73f2e:
#include "mbed.h" Serial pc(SERIAL_TX, SERIAL_RX); AnalogIn Resistance(A0); PwmOut Brightness (D15); int main() { while(1) { Resistance.read(); Brightness = Resistance; pc.printf("Resistance = %f\r\n", Resistance.read()); } }