Seri Haberleşme-2
Dependencies: mbed
main.cpp
- Committer:
- ctasdemir
- Date:
- 2018-05-11
- Revision:
- 0:a7040346c0e3
File content as of revision 0:a7040346c0e3:
#include "mbed.h" Serial pc(USBTX, USBRX); // tx, rx PwmOut led(PA_7); float brightness = 0.0; int main() { pc.printf("Press 'u' to turn LED1 brightness up, 'd' to turn it down\n"); while(1) { char c = pc.getc(); if((c == 'u') && (brightness < 0.5)) { brightness += 0.01; led = brightness; } if((c == 'd') && (brightness > 0.0)) { brightness -= 0.01; led = brightness; } } }