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: LidarLitePwm mbed
main.cpp
00001 #include "mbed.h" 00002 #include "LidarLitePwm.h" 00003 00004 Serial _pc(USBTX, USBRX); 00005 00006 LidarLitePwm _lidar(p12); 00007 00008 int main() 00009 { 00010 _pc.baud(115200); 00011 00012 printf("Started\r\n"); 00013 00014 while(1) 00015 { 00016 int lidarAltitude = _lidar.read(); 00017 printf("altitude: %d cm\r\n", lidarAltitude); 00018 00019 wait_ms(20); 00020 } 00021 }
Generated on Sun Jul 31 2022 03:54:12 by
1.7.2