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
00001 // LIS302 Hello World! moves leds based on x acceleration 00002 00003 #include "mbed.h" 00004 #include "LIS302.h" 00005 00006 LIS302 acc(p5, p6, p7, p8); // mosi, miso, sclk, ncs 00007 BusOut leds(LED1, LED2, LED3, LED4); 00008 00009 int main() { 00010 while(1) { 00011 leds = 1 << (int)(4 * acc.x()); 00012 wait(0.1); 00013 } 00014 }
Generated on Tue Jul 12 2022 11:48:12 by
