Alejandro Montes
/
Experiment_1
IT Tralee Life Long Learning 2020 Instrumentation, Monitoring and Control Module Laboratory Session
Revision 0:4a236e64d65b, committed 2020-07-27
- Comitter:
- alejandromontes
- Date:
- Mon Jul 27 19:35:12 2020 +0000
- Commit message:
- Alejandro Montes Instrumentation Monitoring and Control LAB
Changed in this revision
diff -r 000000000000 -r 4a236e64d65b C12832.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/C12832.lib Mon Jul 27 19:35:12 2020 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/chris/code/C12832/#7de323fa46fe
diff -r 000000000000 -r 4a236e64d65b LAB_2.1.CPP --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/LAB_2.1.CPP Mon Jul 27 19:35:12 2020 +0000 @@ -0,0 +1,28 @@ +#include "mbed.h" + +Serial pc(USBTX, USBRX); // tx, rx +PwmOut led(LED1); +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; + } + if(c=='u'){ + pc.putc('^'); + } + if(c=='d'){ + pc.putc('v'); + } + } +} \ No newline at end of file
diff -r 000000000000 -r 4a236e64d65b mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Mon Jul 27 19:35:12 2020 +0000 @@ -0,0 +1,1 @@ +https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400 \ No newline at end of file