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:
- Lorutal
- Date:
- 2018-06-11
- Revision:
- 0:0c7c74d022ff
File content as of revision 0:0c7c74d022ff:
#include "mbed.h"
#include "AX12.h"
int main() {
    AX12 myax12 (PC_6, PC_7, 1); // tx rx, id
    while (1) {
        myax12.SetGoal(0);    // go to 0 degrees
        wait (2.0);
        myax12.SetGoal(300);  // go to 300 degrees
        wait (2.0);
    }
}