Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First stage finished? #42

Closed
wants to merge 16 commits into from
Prev Previous commit
Next Next commit
.
  • Loading branch information
LechengKong committed Jun 27, 2018
commit 42b48deac49bb49ed6218afee33c3f3295e4b900
2 changes: 1 addition & 1 deletion src/pi/IMU_Lidar/Lidar_IMU_read_optimize_delta_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def getSensorAndCamera(host='192.168.1.121',port=6000,duration=5,endless=False,t
beginTime = str(datetime.datetime.now())
parser = argparse.ArgumentParser(description = 'PiCar log file generator', formatter_class = argparse.RawTextHelpFormatter, conflict_handler = 'resolve')
parser.add_argument("--ip",help="Ip of this raspberry pi",default="192.168.1.121")
parser.add_argument("--po",help = "port for connection",type = int,default=60000)
parser.add_argument("--po",help = "port for connection",type = int,default=6000)
parser.add_argument("-i","--t", help = "endless mode", action='store_const',const=1000 , default =5 )
parser.add_argument("--t",help = "determine the duration that the test runs", type = int, default = 5)
parser.add_argument("--sa",help = "set accelerometer ODR, available values(default = 6): \n 1 = 10 Hz 4 = 238 Hz \n 2 = 50 Hz 5 = 476 Hz \n 3 = 119 Hz 6 = 952 Hz", type = int, choices=[1,2,3,4,5,6], default = 6)
Expand Down