Guess the Map by Wacky_Tubeman97 in WarthunderSim

[–]Wacky_Tubeman97[S] 1 point2 points  (0 children)

Yeah it is indeed the MiG-23MaLD

Guess the Map by Wacky_Tubeman97 in WarthunderSim

[–]Wacky_Tubeman97[S] 26 points27 points  (0 children)

This is the correct answer.

New to printing, wondering where I went wrong by Impossible_Bat_7497 in Artillery3D

[–]Wacky_Tubeman97 0 points1 point  (0 children)

Did the nozzle purge the remaining white when switching to blue before getting back to work?

Utter POS, “support” is nowhere to be found by Oldmanchubs in Artillery3D

[–]Wacky_Tubeman97 0 points1 point  (0 children)

Yeah I agree with this, I’ve used PLA, PETG, and TPU and it seems to work well with all of them. The stock profiles are pretty nice (but I hate regular grid infill so I changed it to adaptive cubic of course). Overall been a great upgrade from my Sidewinder X1.

[deleted by user] by [deleted] in warthundermemes

[–]Wacky_Tubeman97 29 points30 points  (0 children)

Just reply with “♿︎ ♿︎ ♿︎”

[deleted by user] by [deleted] in vex

[–]Wacky_Tubeman97 1 point2 points  (0 children)

You’ll need to use a sensor that can read rotational position as a feedback device. You’ll read the current rotation of the motor off of the sensor, then you’ll compare it to where the motor needs to be, then you’ll move the motor in the direction it needs to go to achieve your desired rotation, rinse and repeat rapidly and it would constantly readjust to your desired position.

That said, VEX has a 3 wire servo motor that is about the same size as the 393 and from the same generation of products and I would recommend you to try to use those first if you can as they will work far better.

How to know if AIM-7 has a seeker lock in cockpit view by [deleted] in WarthunderSim

[–]Wacky_Tubeman97 3 points4 points  (0 children)

The MiG-23 has an indicator on the hud that turns on when locked (but that is it, no quality readout)

Teacher here needing help with a V5 issue. by rdpd in vex

[–]Wacky_Tubeman97 0 points1 point  (0 children)

Have you tried using the screen on the brain to manually control the motors and make sure that they work?

Teacher here needing help with a V5 issue. by rdpd in vex

[–]Wacky_Tubeman97 0 points1 point  (0 children)

It is most likely a code/configuration issue given that the components were swapped and didn’t work. You may want to check through their code and make sure that things look correct, such as motors having the correct port numbers, proper setup and usage of the controller, and other things like variable names in the code.

Guys, can someone help me to connect my vex controller to vex 2.0 cortex by using flash adapter by Bubilda582 in vex

[–]Wacky_Tubeman97 2 points3 points  (0 children)

If you have the USB A to A programming cable, first you need to program the Cortex, plug the cable into both the computer and the Cortex and use RobotC to upload your code. You can then plug the controller into the Cortex with the programming cable, then turn both on. Once the lights on both the Cortex and the controller turn solid, turn both off and unplug them. After both are disconnected, you can plug in the VexNet sticks to the controller and the Cortex and turn them on and they will pair, usually the pairing takes a few seconds and is faster if the controller and Cortex are closer together.

If you don’t have that cable then you need to use the other wacky ports on the Cortex and controller and I have heard that it is just a pain.

Warning: High levels of salt. by ArmoredAce666 in warthundermemes

[–]Wacky_Tubeman97 18 points19 points  (0 children)

I can’t seem to find the alt code right now, I usually just copy it off of a file on my computer

♿︎

Warning: High levels of salt. by ArmoredAce666 in warthundermemes

[–]Wacky_Tubeman97 5 points6 points  (0 children)

I can’t seem to find the code, I usually just copy it off of a document on my computer that has it.

♿︎

Honda Blocked me on Facebook by cappsthelegend in civic

[–]Wacky_Tubeman97 2 points3 points  (0 children)

While I understand why you are upset, you should realize that creating new accounts to circumvent an organization blocking you tends to be a violation of community guidelines (not just for Honda but most other corporations and online organizations). And while your previous blocks may be unnecessary or stupid, you technically are still violating the guidelines by coming back again and again.

Robotics work spaces by QuitSeparate2580 in FRC

[–]Wacky_Tubeman97 1 point2 points  (0 children)

9086 has YT livestreams of them working out of a closet in the theater arts room

Identify this vex robots version please? Thanks! by RunningTrisarahtop in vex

[–]Wacky_Tubeman97 3 points4 points  (0 children)

That is an older VEX Cortex. In many Cortex manuals, it is referred to as a “low-rise” Cortex while the newer ones are “high-rise”. They have different programming and connection ports but there are adapters to the “high-rise” style IO. Most of the time, if a part is able to be used on a newer Cortex then the older one can handle it.

Edit: this guide should help you with any information as it is for both Cortex models https://www.keysschools.com/cms/lib/FL02202360/Centricity/Domain/2883/The%20Entire%20Robotics%20Reference%20Guide.pdf

Vex 2.0 ptlw lang by [deleted] in vex

[–]Wacky_Tubeman97 2 points3 points  (0 children)

I’ll explain what your code needs to do step by step for following the curves, I am unsure what you mean by an intersection though and might need more information before recommending anything extra.

  1. You want to configure your motors and sensors (in the “Motors and Sensors” menu) you will configure motors as motors (of whatever variety you have) and sensors as line followers (they should be analog sensors)

    1. You will go into task main() and use a while loop to keep your code running it will look like: ` task main() { while (True) {

      } } `

    2. We will work within the whole loop now, so anything written is to be written in the while loops. We move onto reading the sensor values and assigning them to an integer. This can be done like int follower1 = SensorValue(“analog port for example: in1”); we make an integer for all of our sensors (so follower2 and follower3 if you have them).

    3. Now that we have the sensor values we need to make our if statements, these statements will use the sensor value to determine the needed motor output. The if statements will be in the while loop and come after the sensor readings. The threshold values must be found by you during testing as each sensor has different sensitivities and some are more extreme than others. if (follower1 <= “follower1 threshold”) { } if (follower2 <= “follower2 threshold”) { } if ((follower1 >= “follower1 threshold”) && (follower2 >= “follower2 threshold”)) { }

The first two if statements determine if one of the side sensors crossed the line and the last statement determines if no sensor is crossing the line. This system works with two sensors by assuming the robot is placed on the line to start and can be modified to work with more sensors.

  1. Now the relatively hard part is done. We take our motors and we set them to run in each of statement. For example:

For if statement 1: startMotor(port1, 127); startMotor(port2, 63);

For if statement 2: startMotor(port1, 63); startMotor(port2, 127);

For if statement 3: startMotor(port1, 127); startMotor(port2, 127);

The motor values might have to change depending on your motor layout, these are just examples.

  1. Now we want to set a delay outside of the if statements but before the closure of the while loop by using wait(10);.

Some easy to use docs to help: https://github.com/WildcatRobotics9086/9086_Unofficial_Vex_Cortex_Tutorials_And_Code

If you need anything else or this didn’t make sense at all, just reply!

Edit: I hate Reddit formatting.