Tobis Programm forked to not destroy your golden files
Fork of Robocode by
source/Grabbing.cpp@60:b57577b0072f, 2017-04-18 (annotated)
- Committer:
- cittecla
- Date:
- Tue Apr 18 16:19:18 2017 +0000
- Revision:
- 60:b57577b0072f
- Parent:
- 55:a1e6fb87d648
- Child:
- 66:87b615e4a842
work has been done on init
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
cittecla | 12:91c2e07d2b5b | 1 | /** |
cittecla | 12:91c2e07d2b5b | 2 | * Grabbing function library |
cittecla | 12:91c2e07d2b5b | 3 | * Handels grabbing of the LEGO-stones |
cittecla | 12:91c2e07d2b5b | 4 | **/ |
cittecla | 12:91c2e07d2b5b | 5 | |
cittecla | 39:92723f7ea54f | 6 | #include "Grabbing.h" |
cittecla | 12:91c2e07d2b5b | 7 | |
cittecla | 39:92723f7ea54f | 8 | int grabbing(){ |
aeschsim | 55:a1e6fb87d648 | 9 | //void |
cittecla | 39:92723f7ea54f | 10 | return 0; |
cittecla | 39:92723f7ea54f | 11 | } |
cittecla | 39:92723f7ea54f | 12 | |
cittecla | 39:92723f7ea54f | 13 | int arm_position_move(){ |
aeschsim | 55:a1e6fb87d648 | 14 | //void (Mittelstellung für Fahrt) |
cittecla | 39:92723f7ea54f | 15 | return 0; |
cittecla | 39:92723f7ea54f | 16 | } |
cittecla | 39:92723f7ea54f | 17 | |
cittecla | 39:92723f7ea54f | 18 | int arm_position_grabbing(){ |
aeschsim | 55:a1e6fb87d648 | 19 | void set_servo_position(int servo, int deg); |
cittecla | 39:92723f7ea54f | 20 | return 0; |
cittecla | 39:92723f7ea54f | 21 | } |
cittecla | 39:92723f7ea54f | 22 | |
cittecla | 39:92723f7ea54f | 23 | int arm_position_release(){ |
cittecla | 39:92723f7ea54f | 24 | |
cittecla | 39:92723f7ea54f | 25 | return 0; |
cittecla | 39:92723f7ea54f | 26 | } |
cittecla | 39:92723f7ea54f | 27 | |
aeschsim | 55:a1e6fb87d648 | 28 | int open_grabber(){ |
cittecla | 39:92723f7ea54f | 29 | |
cittecla | 39:92723f7ea54f | 30 | return 0; |
cittecla | 39:92723f7ea54f | 31 | } |
cittecla | 39:92723f7ea54f | 32 | |
cittecla | 39:92723f7ea54f | 33 | int close_grabber(){ |
cittecla | 39:92723f7ea54f | 34 | |
cittecla | 39:92723f7ea54f | 35 | return 0; |
cittecla | 39:92723f7ea54f | 36 | } |
cittecla | 39:92723f7ea54f | 37 | |
cittecla | 60:b57577b0072f | 38 | |
cittecla | 39:92723f7ea54f | 39 |