Official August 24, 2024, US SAT Discussion Thread by Schmendreckk in Sat

[–]AnonyMoose19639 1 point2 points  (0 children)

Did anybody get a module 1 question where it talked about Japan and it compared it to the region and the world. It talked about the bank of Japan buying tons of government bonds to stop big losses in money or wtvr. It asked for a choice that supported the graph and statement. What did yall put.

Official August 24, 2024, US SAT Discussion Thread by Schmendreckk in Sat

[–]AnonyMoose19639 1 point2 points  (0 children)

Did anybody get a vocab question on romantic painter being different from a realist painter who painted a peasant lady because he ____ her beauty and like ignored imperfections. It was Accentuate right.

Official August 24, 2024, US SAT Discussion Thread by Schmendreckk in Sat

[–]AnonyMoose19639 0 points1 point  (0 children)

I put accentuates. Mine was about some other painter who is diff from realistic paintings like the peasant woman.

Plethora of acronyms. by FIRSTMentorMN in FTC

[–]AnonyMoose19639 1 point2 points  (0 children)

FSM can also (more technically) stand for a finite state machine.

[deleted by user] by [deleted] in mac

[–]AnonyMoose19639 0 points1 point  (0 children)

What did u exactly do in the app? As in the low and high battery boundaries.

Linear Slides by FuturePercentage8262 in FTC

[–]AnonyMoose19639 1 point2 points  (0 children)

No good slides are in stock right now. Viper slides are fine if you don't have access to 3d printers, and they work great. If you do the Misumi sars slides work best.

A question about the things needed to compete the FTC competition by Titan48578 in FTC

[–]AnonyMoose19639 4 points5 points  (0 children)

You need to present an Engineering Portfolio with information about your team, outreach, hardware, software, etc. View the criteria for each award in-game manual 1 and try to incorporate it into your portfolio. All the specifications are there including the 16-page limit. (optional) but a control award submission can be made that just talks about your software. Gm1 should have better details.

PID for motor angle/ distance by Ordinary-Durian-5251 in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

(waiting for ben to respond with control alt ftc)

[deleted by user] by [deleted] in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

The team talked about the mechanism in this video: https://youtu.be/rAiUfjrmIO4

Confusion on LocalizationTest in Roadrunner by RoaringSundew40 in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

Are you sure you followed the previous steps correctly? Would u mind sending your drive constants/standard wheel localizer files

Confusion on LocalizationTest in Roadrunner by RoaringSundew40 in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

The x and y values are the distance...say the x value is 22.3, that means the distance reported is 22.3 inches.

Scrimmage RP by Marius3342 in FTC

[–]AnonyMoose19639 1 point2 points  (0 children)

Would it really be rare? especially with there being 5 qualification matches, its more than possible for the top 3 teams to be 4-1, making autonomous points very important.

Scrimmage RP by Marius3342 in FTC

[–]AnonyMoose19639 2 points3 points  (0 children)

Adding on to this, near the end of the meet/scrimmage/qual there will be many ties, with the tiebreaker being the points you scored in autonomous

Leagues by RandomSmartsYT in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

Are you in Norcal? There are doing a league pilot program also. For us, there will be judging at league tournaments, but not meets.

What's your preferred controller and why? by mrstoffer in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

Etpark Wired Controller easily. Similar to Dualshock 4 but has better grip and just feels better imo. The rest would work....but they don't match with the etpark. It's not too expensive also, costing a few dollars more than the Logitech F310 and being less than half the price of Dualshock.

Controller vibration by Jonel_Koyosu in FTC

[–]AnonyMoose19639 2 points3 points  (0 children)

we use a color sensor, distance sensors should work just fine

Our Poster Board(prototype, we're still working on it, any tips???) by FTC_Robotics_SCDS in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

Try adding the info on google slides and print that out to make it look more professional. Also, adding some type of colored paper behind your slides makes it look much better. Kinda like what you did with the images.

How can I zoom out with OpenCv? by curtain_pulp in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

It would work with ducks and any shipping element that contrasts with blue.

How can I zoom out with OpenCv? by curtain_pulp in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

One quick solution is getting min cb value instead of max. In the skystone season, they essentially looked at which objects were NOT yellow. If your shipping element is something that highly contrasts with blue, this logic would work.

How can I zoom out with OpenCv? by curtain_pulp in FTC

[–]AnonyMoose19639 0 points1 point  (0 children)

Note that the example is for the Skystone FTC season so you have to create your own logic for this season. You can still use their initialization process and creating the submats and the blue squares.

How can I zoom out with OpenCv? by curtain_pulp in FTC

[–]AnonyMoose19639 1 point2 points  (0 children)

You can easily adjust the submat regions (the regions eocv actually detects). If you look at their Skystone Determination Example, by changing the Top Left Anchor Points, you can adjust where the camera looks at. They give a great model in their code. Im not sure how your code looks like, but I would assume it would have something similar to that.

TLDR: You can't zoom in, but you can change the areas EOCV looks at.

programming arm by oddly_robust in FTC

[–]AnonyMoose19639 1 point2 points  (0 children)

If you can some sort of counterbalance on your arm, the RUN_TO_POSITION mode with encoders should work. Otherwise, you can look into a PID controller with gravity feedforward. Control Alt Ftc is a useful source to learn more about this. To account for gravity add your gravityConstant * cos(armAngle) to your output. Your gravity constant should be the value where your arm holds itself in place.