Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
wuselfuzz
/
hexapod_ng
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Added frame geometry data
main
Marcus Grieger
1 anno fa
parent
0f438bd6ef
commit
52cedeecb4
3 ha cambiato i file
con
37 aggiunte
e
0 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+34
-0
configuration/geometry.json
+0
-0
python/hexapod/servo_mapping.py
+3
-0
python/test_hal.py
+ 34
- 0
configuration/geometry.json
Vedi File
@@ -0,0 +1,34 @@
{
"leg_geometry": {
"c": 20,
"f": 80,
"t": 130
},
"leg_offsets": {
"1": {
"offset": [-40, 80, 0],
"side": "l"
},
"2": {
"offset": [-60, 0, 0],
"side": "l"
},
"3": {
"offset": [-40, -80, 0],
"side": "l"
},
"4": {
"offset": [ 40, -80, 0],
"side": "r"
},
"5": {
"offset": [ 60, 0, 0],
"side": "r"
},
"6": {
"offset": [ 40, 80, 0],
"side": "r"
}
}
}
python/servo_mapping.py → python/hexapod/servo_mapping.py
Vedi File
+ 3
- 0
python/test_hal.py
Vedi File
@@ -0,0 +1,3 @@
import hal
hal.pwm['t1'].duty_cycle=1000/20000
Write
Preview
Loading…
Annulla
Salva