Radar z lidar sensor
Radar z lidar sensor 1. Zainstaluj "LIDARLite Arduino Library" i "Servo Arduino Library" w swoim Arduino IDE, przechodząc do Sketch->Include library->Dodaj bibliotekę z pliku ZIP. 2. Prześlij szkic Arduino na swoją tablicę. 3. Połącz wszystkie komponenty zgodnie z załączonymi schematami. 4. Włącz Arduino i uruchom dołączony pakiet Power-KI. https://www.youtube.com/watch?v=Vm3c8mJqvCs https://www.youtube.com/watch?v=EU-jh4T8-zM #include <Servo.h> #include <Wire.h> #include <LIDARLite.h> unsigned short crv [ 3 ] ; #define HEADSAM 0xFAFB #define CRV_HEAD crv[0] #define CRV_ANGL crv[1] #define CRV_DIST crv[2] byte* buff ; #define SERVO_PIN 9 Servo myservo ; int pos = 0 ; bool servoAlive = true ; LIDARLite lidarLite ; int cal_cnt = 0 ; void setup () { Serial.begin ( 9600 ) ; myservo.attach ( SERVO_PIN ) ; myservo.write ( 0 ) ; CRV_HEAD = HEADSAM ; buff = ( byte* ) crv ; lidarLite.begin ( 0 ...