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 QEI HIDScope biquadFilter MODSERIAL FastPWM
main.cpp
- Committer:
 - IslamKhalil
 - Date:
 - 2019-09-09
 - Revision:
 - 4:90ea97188542
 - Parent:
 - 3:766c85141f33
 
File content as of revision 4:90ea97188542:
#include "mbed.h"
#include "HIDScope.h"
#include "QEI.h"
#include "MODSERIAL.h"
#include "BiQuad.h"
#include "FastPWM.h"
DigitalOut led(LED_BLUE) ;
DigitalIn sw2(SW2) ;
MODSERIAL pc(USBTX, USBRX) ;
int main()
{
    pc.baud(115200) ;
    pc.printf("\r\nStarting...\r\n\r\n") ;
    
    while (true) {
        
        led = !led ;
        wait_ms(500) ;
        char c ;
        c = pc.getcNb() ;
        pc.putc(c) ;
    }
}