Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This Components are already fixed:

 

...

page gives an overview about the required components and lists advantages and disadvantages for each of them. 

 

       

ordered

component

 

link

quantity

price (€)

weight (g)

Current (mA)

HTML
<input  checked type="checkbox"></input>

Frame

F330 Glass Fiber Mini Quadcopter Frame 330mm

Hobbyking

1

10,46

147

-

HTML
<input  checked type="checkbox"></input>

Microcontroller

Arduino Mega 2560

 

1

-

37

~200

Expand
titleClick here for more info...

Arduino Mega 2560

Links: store.arduino.cc/product/A000067  

http://www.arduino.cc/en/Main/ArduinoBoardMega2560

General Informations:

  • 16 MHz

Price: 17,99 €

Lenght101.52 mm
Width53.3 mm
Weight37 g
Expand
titleOther Microprocessors

Raspberry Pi 2 Model B:

  • a lot of existing projects and help
  • only 40 GPIO Pins
  • extension-board available (http://www.gertbot.com/) for real-time tasks and controlling of actors and sensors (easy to use with existing libraries)
    • Price: Farnell £40.00

weight: 59g

size: heigth: 85 mm, width: 56 mm, depth: 17 mm

power consumption: http://raspi.tv/2015/raspberry-pi2-power-and-performance-measurement

Hardware:

  • Prozessor: ARM710 with 900MHz
  • RAM: 1024 MB

 

price:

Reichelt: 37,95 €

BeagleBone Black

In contrast to Raspberry Pi :

  • better I/O capabilities with 7 channel 200kHz 12-bit ADC, 8 PWMs, 4 UARTs, quadrature encoder hardware
  • don't have to buy additional components to connect up many more sensors and actuators
  • large number of PWM channels on the Bones make them better for motors
  • better real-time control with two 200MHz, 32-bit RISC programmable real-time units (PRUs)
  • approximately 20 books available for texts, reference and projects

weight: 39.68 grams

size: heigth: 86 mm, width: 53 mm

power consumption: http://www.farnell.com/datasheets/1819364.pdf?COM=DesignCenter in section 6.1.7

Hardware:

  • Processor: AM335x 1GHz ARM® Cortex-A8

  • 512MB DDR3 RAM

  • 4GB 8-bit eMMC on-board flash storage

  • 3D graphics accelerator

  • NEON floating-point accelerator

  • 2x PRU 32-bit microcontrollers

Price:

Farnell element14: €46.16 (Price is before tax)

RS Components: £39.99

HTML
<input  checked type="checkbox"></input>

LiPo-Warner

HobbyKing LiPo Voltage Checker (2S~8S)

Hobbyking

2

2,94

9

?

Expand
titleClick here for more info...

Connection to the microcontroller will have to be done by ourselves. So I don't know how many pins we might need. Will have to talk to someone who might know more, internet doesn't really give much insight. Maybe I'll make a post about it somewhere?

Links: Amazon

Cost: 7€

weight: 9g

HTML
<input  checked type="checkbox"></input>

Motor

Turnigy Aerodrive SK3 2822-1275 Brushless Outrunner

Hobbyking

4

15,98

31

7000 (Max 8000)

Expand

Test results with interesting values:

http://www.flybrushless.com/motor/view/608

HTML
<input  checked type="checkbox"></input>

Gyro and Acceleration Sensors

MPU-9150 All in one kit

eBay

1

15,99

?20?

?30?

4,25mA

Expand
titleClick here for more info...

MPU-9150. All in one kit. Gyro, Acceleration and Compass.
Links: Amazon: http://www.amazon.de/GY-9150-MPU-9150-Achsen-Kompass-Accelerometer-SE05014/dp/B00VRJEA7C/ref=sr_1_1?ie=UTF8&qid=1430578388&sr=8-1&keywords=MPU-9150
 
         Specification: http://www.invensense.com/mems/gyro/documents/PS-MPU-9150A-00v4_3.pdf
Cost: 20.59€
Operating Voltage Supply: 2.4V-3.46V
Logic Supply Voltage: 1.8V +- 5% or VDD
Communication via I2C-Bus
Simple example to read the sensor data on an arduino: instruction

HTML
<input  checked type="checkbox"></input>

Proximity Sensors

Ultrasonic-Module HC-SR04

Amazon

10

2,11

8,5

15

Expand
titleClick here for more info...

4-Pin Ultrasonic-Module HC-SR04

Probably we will need 10 of this sensors, but maybe 6 will be enough.

Links: Amazondatasheetshort instructions

Cost: 10 x approx. 2€ ≈ 20€

Power Supply: +5VDV, 10 x 15mA working current

weght: 8.5g

Pins: 2 GPIO, VCC, GND

  • VCC = +5VDC (GPIO)
  • Trig = Trigger input of Sensor (5V Digital GPIO)
  • Echo = Echo output of Sensor (5V Digital GPIO) 
    Important: Outputs 5V. If the microcontroller can only handle 3.3V inputs, we need to build an easy voltage divider.
  • GND = GND (GPIO)
Code Block
languagecpp
titleCode Beispiel für Ardunio
linenumberstrue
collapsetrue
/*
 HC-SR04 Ping distance sensor]
 VCC to arduino 5v GND to arduino GND
 Echo to Arduino pin 13 Trig to Arduino pin 12
 Red POS to Arduino pin 11
 Green POS to Arduino pin 10
 560 ohm resistor to both LED NEG and GRD power rail
 More info at: http://goo.gl/kJ8Gl
 Original code improvements to the Ping sketch sourced from Trollmaker.com
 Some code and wiring inspired by http://en.wikiversity.org/wiki/User:Dstaub/robotcar
 */

#define trigPin 13
#define echoPin 12
#define led 11
#define led2 10

void setup() {
  Serial.begin (9600);
  pinMode(trigPin, OUTPUT);
  pinMode(echoPin, INPUT);
  pinMode(led, OUTPUT);
  pinMode(led2, OUTPUT);
}

void loop() {
  long duration, distance;
  digitalWrite(trigPin, LOW);  // Added this line
  delayMicroseconds(2); // Added this line
  digitalWrite(trigPin, HIGH);
//  delayMicroseconds(1000); - Removed this line
  delayMicroseconds(10); // Added this line
  digitalWrite(trigPin, LOW);
  duration = pulseIn(echoPin, HIGH);
  distance = (duration/2) / 29.1;
  if (distance < 4) {  // This is where the LED On/Off happens
    digitalWrite(led,HIGH); // When the Red condition is met, the Green LED should turn off
  digitalWrite(led2,LOW);
}
  else {
    digitalWrite(led,LOW);
    digitalWrite(led2,HIGH);
  }
  if (distance >= 200 || distance <= 0){
    Serial.println("Out of range");
  }
  else {
    Serial.print(distance);
    Serial.println(" cm");
  }
  delay(500);
}
Expand
titleMore information about the sensors...

Minimum sensor recognition distance:

Image Added

> Sensor’s minimum-distance does not have to be much smaller than 20cm (8“).

Infrared:

  • Binary Output:               detects whether an object is within a threshold distance
  • Multiple Bit Output:        detects the more or less accurate distance to an object
                       

Pro:

-       Quality products comparatively cheap

-       In some cases very high resolution (up to 1 mm)

Contra:

-       Problems with sun light

-       Problems with recognition of dark or black objects

-       Small range sizes

 

Recommendation after some research: 

Sharp GP2Y 0A02 (ca. $11, 20cm – 150cm Range, Analogue Output)

http://acroname.com/products/SHARP-GP2Y0A02YK0F-IR-PACKAGE

(see also: http://acroname.com/articles/sharp-infrared-ranger-comparison for comparison)

 

Ultrasonic

Pro:

-       Not depending on optical properties of an object -> more reliable in common usage

-       Larger range sizes

Contra:

-       Usually higher prize

-       Lower resolution (2-3 cm)

-       Problems detecting acoustic quieting objects

 

Recommendation after some research:

Parallax PING Ultrasonic Sensor (ca. $29, 2cm – 300cm Range)

https://www.parallax.com/product/28015

(maybe cheap replacement: http://www.dx.com/p/hc-sr04-ultrasonic-sensor-distance-measuring-module-133696?Utm_rid=37202148&Utm_source=affiliate#.VTsyqa3tmko)

HTML
<input  checked type="checkbox"></input>

Telemetry Kit

Aukru HC-06

Amazon

1

8,99

9

50

 

3

50

Expand
titleClick here for more info...

Aukru HC-06 Wireless 4 Pins Bluetooth RF Transceiver Serial Module

Links: Amazoninstructionsinstructionsinstructions

Cost: 9€

size: 4.3 * 1.6 * 0.7cm

weight: 9g

Power Supply: 3.3V - 6V, approx. 50mA

Pins: 2 GPIO, VCC, GND

  • VCC = +3.3VDC / +5VDC (GPIO)
  • TXD = Trigger input of Sensor (RXD (serial) Digital 0)
  • RXD = Echo output of Sensor (TXD (serial) Digital 1) 
  • GND = GND (GPIO)


Expand
titleOld idea...

FPV 433Mhz Radio Telemetry Kit 100mW V1.1:

http://www.hobbyking.com/hobbyking/store/__42847__FPV_433Mhz_Radio_Telemetry_Kit_100mW_V1_1.html

HTML
<input  checked type="checkbox"></input>

Power Distribution

Hobbyking Multi-Rotor Power Distribution Board

Hobbyking

1

7,6

1,96

-

HTML
<input  type="checkbox"></input>

Voltage converter 12V-3,3V

I apo will buy them from Elektronik Schmidt

- 

?

 - 

- 

-

 

 
HTML
<input  checked type="checkbox"></input>

Voltage converter 12V-5V

Included in the ESCs

- 

-

 - 

- 

-

 

 
HTML
<input  checked type="checkbox"></input>

ESC programming card

 

TURNIGY BESC Programming Card

Hobbyking

 

 

 

 

 

ESC

 

Hobbyking

 

 

 

 

1

6,19

-

-

HTML
<input  checked type="checkbox"></input>

ESC

TURNIGY Plush 12amp (2A BEC) BESC

Hobbyking

4

8,99

13

-

HTML
<input  checked type="checkbox"></input>
Battery bag

Lithium Polymer Charge Pack 18x22cm Sack

Hobbyking21,77- - 
 
HTML
<input  checked type="checkbox"></input>
Cable ties- - - - - - 
 
HTML
<input  checked type="checkbox"></input>
VelcroPolyester Velcro Peel-n-stick (Black) (1 Meter)Hobbyking12,42--
HTML
<input  checked type="checkbox"></input>
Battery    

Turnigy 2200mAh 3S 20C Lipo Pack

Hobbyking28,89188 

...

http

cabels

 

 

 

 

 

 

battery charger

with balancing

 

 

 

 

 

battery bag

 

Expand

 

We have to choose models of the following Components:

 

...

4134__Lithium_Polymer_Charge_Pack_18x22cm_Sack.html
titleClick here for more info...

3S will presumably be enough
For weight reasons: probably ca. 2000mAh?

Weight: 162g
Price: 28,16€
Output: 11,1V

2 x http://www.hobbyking.com/hobbyking/store/__

2

 

 

 

tool for balancing of the motor

 

 

 

 

 

 

plugs

 

 

 

 

 

 

propellers

maybe not the best choice:

Turnigy 8x4,5 Props For DJI and walker CW Rotation (White)

 

2

3,28

31

 

Battery

ZIPPY Flightmax 3000mAh 3S1P 20C

http://www.hobbyking.com/hobbyking/store/uh_viewItem.asp?idProduct=31954

2

14,64

239

 

 

 

 

17286__Turnigy_nano_tech_2000mah_3S_15_25C_Lipo_AIRSOFT_Pack.html


--> Voltage Controller (e.g. IC7805) required, probably multiple? Low cost, Arndt will bring some, maybe we can buy them off him, if he doesn't mind?
--> May need some that are lossless? -> mc35063 but higher cost!
--> Some people say we will need a step down module, because Voltage Controllers will offer too much variation in their voltage/current: http://www.electrodragon.com/product/lm2596s-adj-dc-dc-small-tiny-adjustable-step-down-module-3-40vin-1-5-35vout/ is recommended, but only outputs 3A?

==> Need a lot more information, might look into it more tomorrow?

HTML
<input  checked type="checkbox"></input>
Battery Charger

HobbyKing ECO6 50W 5A Balancer/Charger w/ accessories

Hobbyking116,91--
HTML
<input  checked type="checkbox"></input>
Propeller Balancer

HobbyKing™ Universal Propeller Balancer, For T Style And Std Propellers

Hobbyking16,43--
HTML
<input  checked type="checkbox"></input>
Propeller

Turnigy 8x4.5 Props For DJI and Walkera CCW Rotation (white) (4pcs/bag)

Hobbyking23,2331 
HTML
<input  type="checkbox"></input>
PropellerSF 8045 Probs 2pc Standard Rotation 2 pc RH Rotation BlackHobbyking13,12  
HTML
<input  type="checkbox"></input>
Propeller

Turnigy Carbon Mixed slow fly prop w/adapters 8038R SF (4 pc Right Hand Rotation)

Hobbyking14,53  
HTML
<input  type="checkbox"></input>
Propeller

Turnigy Carbon Mixed slow fly prop w/adapters 8038 SF CCW (4 pc)

Hobbyking

14,22  
HTML
<input  type="checkbox"></input>
Bullet-Connector3.5 mm 3 wire Bullet-connector for motors (5pcs per bag)Hobbyking14,75  
HTML
<input  type="checkbox"></input>
XT60-ConnectorNylon XT60 Connectors Male/Fermale 5 pairsHobbyking14,22