Тёмный

VEX Over Under | JAR Template for Vexcode V5 Pro 

Team 2775V
Подписаться 841
Просмотров 13 тыс.
50% 1

Github Download: github.com/JacksonAreaRobotic...
Follow the instructions on the github page to download and get coding!

Игры

Опубликовано:

 

9 июл 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 55   
@samhyatt4863
@samhyatt4863 Год назад
YOO the JAR logo goes hard
@crphic4493
@crphic4493 Год назад
Mesa like Jar. Deysa berry bombad. Can mesa holecount?
@sirvector5008
@sirvector5008 Год назад
This is sick
@ElevatedCape255
@ElevatedCape255 5 месяцев назад
Can you use this with one tracking wheel and one turning odometry wheel?
@sri_the_tree
@sri_the_tree Год назад
josh and sammy too op ❤❤
@5069z
@5069z Год назад
How does no tracking wheel odom work? Is it based off motor encoders?
@TeamV-um8sl
@TeamV-um8sl Год назад
Yes.
@theflyingcuber
@theflyingcuber Год назад
Can u also use this with tracking wheels if wanted?
@TeamV-um8sl
@TeamV-um8sl Год назад
Absolutely.
@RohanGoyal-vs9mv
@RohanGoyal-vs9mv 11 месяцев назад
how accurate is the 0 encoder odom? is it at least usable in auton? have you guys used it (and what was your experience)?
@TeamV-um8sl
@TeamV-um8sl 11 месяцев назад
2775V used zero tracker odom for auton at Mall of America
@Cytomicc
@Cytomicc Год назад
Jar goes so hard
@Fvillerobo
@Fvillerobo 7 месяцев назад
Does this work on vscode? Is there a specific extention that I need?
@Aaravvvvvvvvvvvvvvvvv
@Aaravvvvvvvvvvvvvvvvv 6 месяцев назад
No it doesnt
@tmassoni13
@tmassoni13 Год назад
Does it work as well with no trackers or are trackers recommended?
@TeamV-um8sl
@TeamV-um8sl Год назад
Trackers are recommended
@landonvo3098
@landonvo3098 Год назад
Can you explain what odom is and how it works I'm new to vrc
@TeamV-um8sl
@TeamV-um8sl Год назад
thepilons.ca/wp-content/uploads/2018/10/Tracking.pdf
@anirvdh
@anirvdh Год назад
blud think he lyrical lemonade
@AbeetoChanito
@AbeetoChanito Год назад
can the odom in jar template handle the barrier yet or no
@TeamV-um8sl
@TeamV-um8sl Год назад
It will not be off by a lot, but I would certainly reset on a wall or maybe just the barrier after going over it.
@Blaze938X
@Blaze938X 8 месяцев назад
Will this accept 8 motor drive?
@minlu8309
@minlu8309 4 месяца назад
Probably, it accepts 6 motor just by changing config i guess it'll also use 8 motor drive
@yodaman85
@yodaman85 Год назад
Small question will the Odom work with mecanum wheels I’m sorta new
@TeamV-um8sl
@TeamV-um8sl Год назад
Yes.
@yodaman85
@yodaman85 Год назад
@@TeamV-um8sl ok thank you
@user-pl4dm7mi8o
@user-pl4dm7mi8o 9 месяцев назад
Why is your curve turning so slippery?How do you manage it? Give me some ways Please.
@TeamV-um8sl
@TeamV-um8sl 9 месяцев назад
If your robot is sliding during swing turns (and you don't want it to), turn down swing_kp, swing_max_voltage, or both.
@user-pl4dm7mi8o
@user-pl4dm7mi8o 9 месяцев назад
@@TeamV-um8slI wrote a function myself in order to make the robot follow a curved path, but I found that the robot doesn't move very straight. Is there a similar function in your program, and how can I use it?
@TeamV-um8sl
@TeamV-um8sl 9 месяцев назад
@@user-pl4dm7mi8o There is no path planning or following implemented in JAR Template.
@kendallsteele8061
@kendallsteele8061 Год назад
Did you run 0 tracking odom at worlds?
@TeamV-um8sl
@TeamV-um8sl Год назад
No, we used two tracker odom at worlds
@wally7573
@wally7573 Год назад
How many inertial sensors does this use?
@SamuelV-hm8vk
@SamuelV-hm8vk Год назад
1
@danyul7570
@danyul7570 Год назад
at least 78
@75693ANB
@75693ANB 6 месяцев назад
Can this be used for 6 600 motor RPM drive and also how do i calibrate???
@skylinex4719
@skylinex4719 6 месяцев назад
Thats exactly what our team is doing. Its very easy. You don't use the drivetrain setup in the graphical menu. You configure each motor individually. Follow the instructions and its really simple.
@Spyder-172
@Spyder-172 Год назад
WW jar on top
@hydrovax
@hydrovax 4 месяца назад
Just wondering does 6 motor driver work with this template
@minlu8309
@minlu8309 4 месяца назад
You can still use it, first config ur stuff normally with a 4 motor drivetrian, then you just need to turn on expert configuration by clicking the project name at the top then you'll see a box appear, check "enable expert configuration" and then go to the "robot-config.cpp" tab and you'll see under "// VEXcode device constructors" you will see something like: motor Motor12 = motor(PORT12, ratio6_1, false); motor Motor13 = motor(PORT13, ratio6_1, false); motor_group LeftDriveSmart = motor_group(Motor12, Motor13); motor Motor8 = motor(PORT8, ratio6_1, true); motor Motor20 = motor(PORT20, ratio6_1, true); motor_group RightDriveSmart = motor_group(Motor8, Motor20); (numbers willl be different based off the ports and the gear catridges of ur drive motors) and then tweak it to add another motor under the first two (change the motor based off port) and then add one more motor with the name of that motor under the LeftDriveSmart or RightDriveSmart like motor Motor12 = motor(PORT12, ratio6_1, false); motor Motor13 = motor(PORT13, ratio6_1, false); motor Motor14 = motor(PORT14, ratio6_1, false); motor_group LeftDriveSmart = motor_group(Motor12, Motor13, Motor14); motor Motor8 = motor(PORT8, ratio6_1, true); motor Motor20 = motor(PORT20, ratio6_1, true); motor Motor10 = motor(PORT10, ratio6_1, true); Hope this helps.
@sunayk5092
@sunayk5092 8 месяцев назад
can you use this without an inertial?
@TeamV-um8sl
@TeamV-um8sl 8 месяцев назад
No
@hassaannasim3413
@hassaannasim3413 Год назад
Can this be used in PROS too
@TeamV-um8sl
@TeamV-um8sl Год назад
Not yet, watch out for it to be supported in PROS soon though
@MajorMusa
@MajorMusa Год назад
does it work with x drives?
@TeamV-um8sl
@TeamV-um8sl Год назад
Yes.
@bruh5131
@bruh5131 Год назад
op
@parkerbarton6495
@parkerbarton6495 Год назад
Hi Josh!
@TeamV-um8sl
@TeamV-um8sl Год назад
Hi Parker!
@MarkLi1079X
@MarkLi1079X Год назад
Would this work for pros?
@TeamV-um8sl
@TeamV-um8sl Год назад
Not yet
@MarkLi1079X
@MarkLi1079X Год назад
@@TeamV-um8sl would there be a future update?
@TeamV-um8sl
@TeamV-um8sl Год назад
@@MarkLi1079X It is looking…unlikely, as of right now
@piraterobotics
@piraterobotics Год назад
🔥
Далее
8889A SNE Regionals Recap | Vex Over Under
3:14
Просмотров 2,5 тыс.
VRC Over Under | 2775V Worlds Highlights
3:41
Просмотров 9 тыс.
Qizim 58-qism | Anons |Nimaga meni bolam o'ladi ?
00:47
I Melted Wood With Friction
8:44
Просмотров 720 тыс.
VEX Robotics PID Control: An Introduction
15:15
Просмотров 3 тыс.
How America’s Largest, Most Secure Embassy Works
8:47
Winning Worlds Recap | 2024 Vex Over Under
10:55
Просмотров 2,4 тыс.
VEX Build Masterclass #1 - Screw Joints
12:52
Просмотров 11 тыс.
2775V Worlds Robot Explanation | VRC Over Under
6:11
Просмотров 4,7 тыс.
4148Z Impact | Pits & Parts | Over Under Robot
13:24
Notebook Explanation - Worlds Design Award
9:12
Просмотров 15 тыс.
Over under robot explanation
4:12
Просмотров 12 тыс.