From df8e764d97cf5f5f152a95869ffb24c2fa0bfcdb Mon Sep 17 00:00:00 2001 From: daniel watson Date: Fri, 28 Oct 2016 13:09:22 -0700 Subject: [PATCH] make crazyflie body --- crazyflie-2.0-housing.scad | 46 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 crazyflie-2.0-housing.scad diff --git a/crazyflie-2.0-housing.scad b/crazyflie-2.0-housing.scad new file mode 100644 index 0000000..9a38432 --- /dev/null +++ b/crazyflie-2.0-housing.scad @@ -0,0 +1,46 @@ +/* GNU AGPLv3 (or later at your option) + see bottom for more license info */ + +/* protective housing for crazyflie 2.0. + + reinforce the arms so they do not snap. + + keep the props up high so they do not get hairs from the ground + wrapped around the motor shaft. + */ + +across_body_screws_outside_measured = 33.3; +across_body_screws_inside_measured = 32.0; + +inside_ = 28.0; + +main_body_width_measured = 28.0; +main_body_length_measured = 31.0; +main_body_diagonal_measured = 79.0; +main_body_height_measured = 1.5; + + +main_body_arm_width_measured = 3.6; + +cube([main_body_width_measured, + main_body_length_measured, + main_body_height_measured]); + + + +/* + This file is part of 3d-printables. + + 3d-printables is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + 3d-printables is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with challenge-bot. If not, see . +*/ -- 2.30.2