| Feature | V5 Kit 276-8750 (2023+) | Legacy (pre-2023) |
|---|---|---|
| Tank size | 200mL aluminum | 1.5" × 4" legacy tank |
| Cylinders included | 25mm / 50mm / 75mm | 200mm stroke only |
| Solenoid type | Double-acting only | Single OR double-acting |
| Tubing cutter | ✓ Included | Not included |
| SMC equivalents legal? | ✗ No SMC equivalents | ✓ SMC equivalents legal |
| Mix kits on same robot? | ✓ Yes — interchangeable per game manual | |
| Known issues | Schrader valve leak (see Leak Diagnosis tab) | Older solenoids wear out |
Fill the system to working pressure and listen carefully — you can often hear a slow hiss. For small leaks that are not audible, apply a small amount of soapy water to each fitting and connection. Bubbles indicate a leak. Fix the source before any competition.
Select the smallest piston that provides sufficient force for the mechanism. Many teams default to larger pistons unnecessarily:
There is a known problem with the Schrader valve on the new 200mL tank itself leaking. Symptoms: robot loses pressure overnight, or cannot hold pressure after removing the pump. If your robot holds fine while the pump is connected but drops immediately after disconnecting, this is likely the issue.
Fix: The stem inside the Schrader valve may be bent or stuck. Try depressing the stem gently with a pen tip and releasing. If the valve is broken, attach a Shut Off Valve Fitting before the tank outlet and close it during transport — this isolates the tank and prevents bleed-off from the valve.
Community-tested order of operations from VEX Forum. Follow exactly — do not skip to step 3 if you have not done step 1.
An angled cut is the most common leak cause. The end of the tube makes the seal inside the fitting. If it is cut at an angle, one side of the tube does not contact the fitting bottom and air escapes. Use the included tubing cutter (new kit) or a razor blade. Even 1–2mm of re-cut fixes most leaks.
Half-inserted tubing is a very common beginner mistake. The tube must touch the very bottom of the fitting — you will feel a slight resistance when it seats. If it only goes in halfway, air leaks between the tube end and the fitting interior.
O-rings on the fittings create the seal. Over-tightening with tools crushes the O-ring and causes a bigger, unfixable leak. Hand-tight is correct. If it still leaks after hand-tightening, the O-ring is missing or damaged — not a tightening problem.
Pressurize to 100 PSI. Listen for hissing. Feel joints with your hand — a leak will create a noticeable airflow. Isolate by section: disconnect tubing after the tank, then after the regulator, then after the solenoid, until the leak disappears. The last section you disconnected contains the leak.
If the solenoid exhaust ports (labeled R) are blocked by zip ties, the cylinder cannot move and air bleeds constantly. Reposition any zip ties that cover the exhaust. Never tape over exhaust ports.
If your code polls get_digital() in a loop without edge detection and a double-acting cylinder fires continuously while the button is held, you will drain the tank in seconds. See the Programming tab.
Fill to 100 PSI at end of practice. Record the pressure on the gauge. Check again next day. If you lost more than 5 PSI overnight — you have a slow leak. Find it before competition week.
A robot that loses 10 PSI overnight has a significant leak. At competition, that robot will run out of air by match 3.
A solenoid is an electrically-controlled valve. When powered, it opens and allows air to flow to the piston. When un-powered, it closes (or switches direction for double-acting). The solenoid itself does not store pressure — it is a gate.
false) the solenoid closes and the piston spring-retracts. The system is safe by default — a brain crash or power cut does not leave pistons extended in an unsafe position.VEX solenoids use the same 3-wire connector as other ADI sensors. Wiring is straightforward:
The V5 Brain only has 8 ADI ports (A–H). If you need more than 8 pneumatic or 3-wire sensor connections, use the V5 3-Wire Expander, which adds 8 more ADI ports via one smart port. Solenoid code is nearly identical — just specify the smart port in the constructor:
VEX solenoids draw current continuously when energized. This is called a latching vs holding solenoid distinction:
The most common mistake: polling get_digital() in a loop without edge detection. If the button is held for 5 control loops (50ms), the piston fires 5 times. This wastes air and wears solenoids.
For double-acting pistons, you only need a brief pulse to move the piston. Once it has traveled, the air pressure in the closed chamber holds it there without continuous solenoid power. This saves battery and prevents solenoid heat.
setPiston() only when needed (on button press, not every loop). If you need the control loop to keep running during the pulse, use a PROS Task for the piston — shown in Pattern 4 below.Display the activation count on the V5 controller screen so the driver can see remaining air budget during the match:
For autonomous sequences where you need the drive to continue while a piston fires, use a PROS Task:
The most air-efficient pattern of all. Deploy the mechanism once at the start of driver control, and it never fires again:
| Mechanism | Typical Activations / Match | Air Risk |
|---|---|---|
| End-game climber / hang | 1–2 total | Very Low — set and forget |
| One-shot game element release | 1–3 total | Low — designed to be minimal |
| Pneumatic claw (toggle-open/close) | 4–10 per match | Medium — count carefully |
| Rapid-fire launcher / indexer | 10–30+ per match | High — requires two reservoirs, minimal bore |
| Intake deploy / unfold | 1–2 (deploy once, stays open) | Low if single-acting |
You control when pneumatics fire. The engineer calculated the budget — your job is to stay inside it. Each activation costs real air that does not come back.
Pneumatics is a strategic resource. Some mechanisms only justify using air in certain match situations. The strategist needs to understand the air budget and call accordingly.
Run through every item before queue. Pneumatic failures at competition are almost always preventable.
Judges expect to see your pneumatic design decisions documented. Here is what strong notebook entries include at each phase.
Judges will ask about your pneumatic system if it is visible on the robot. These are the most common questions. Practice answering them in 30 seconds or less.