Building a toy car wash is not only a fun project for kids, but also a hands-on construction exercise that develops engineering thinking. If you plan to assemble a functional model with water supply, rotating brushes and drying, it is important to immediately determine the scale: it will be a desktop version for machines Hot Wheels or a full-size design for children's bicycles. The main mistake beginners make is underestimating waterproofing and pump selection. For example, a model with water circulation will require a pump with a power of at least 12V (for example, Aquario AC-500), and for drying - a fan on 5000 rpm (a computer cooler will do).

In this article we will look at 3 design options - from the simplest one made of cardboard to a car wash with Arduino control, and also consider typical problems: why the brushes do not rotate, how to avoid leaks and what materials are safe for children. If your goal is a project for a school exhibition, focus on the visual component (LED lighting, transparent water tubes). For home use, the priority is functionality and durability.

1. Choosing the type of toy car wash: 5 options for different tasks

Before purchasing materials, decide on the type of construction. The budget, the complexity of the assembly and the final result depend on this. Here are the main options:

  • πŸš— Tabletop car wash for cars (scale 1:64) - suitable for children 5–10 years old. Plastic bottles, water straws and manually driven brushes are used.
  • 🚲 Car wash for bicycles/scooters - requires a durable frame made of metal profiles or wood, a hose with a sprayer and a drainage system.
  • πŸ’‘ Interactive model with Arduino - for teenagers and adults. Includes humidity sensors, brush servos and programmable lighting.
  • 🏑 Country car wash using improvised means - uses an old washing machine (water tank), bicycle tubes (brushes) and a solar panel for power.
  • 🎨 Decorative car wash - without functionality, but with realistic details (brand stickers, mini-cash register, employee figures).

For a school or kindergarten, the first option is optimal: it is safe, does not require electricity and costs 300–500 rubles. If your goal is to teach the basics of robotics, choose a model with Arduino Uno and sensors. For example, project CarWash_Simulator on PlatformIO allows you to program a wash cycle with a rinse pause.

πŸ“Š What type of car wash are you planning to do?
Tabletop for typewriters
For bicycles/scooters
With Arduino control
From improvised means at the dacha
Decorative (no functionality)

2. Materials and tools: checklist for each type of project

The list of materials varies depending on the complexity of the design. Below is a universal set for a tabletop car wash (scale 1:64) and an extended list for an electric model.

Car wash type Basic materials Tools Approximate cost, β‚½
Tabletop (manual) 5 l plastic bottle, straws, toothpicks, sponge, PVA glue Scissors, drill (for holes), ruler 200–400
Electrically driven 12V pump, 6 mm hose, plastic tank, electric drill brushes, relay Soldering iron, wire cutters, tester, 3 mm drill 1500–3000
For bicycles Metal profile 20Γ—20 mm, polycarbonate, garden hose, paint Grinder, welding machine (or clamps), brush 3000–6000

For water models, pump selection is critical. Cheap Chinese pumps (for example, SP-600) often overheat during prolonged operation. The best option is an aquarium pump with performance 300–500 l/h (for example, Eheim Compact 300). To rotate the brushes, a motor from an old toy or servo drive SG90 (price ~300 β‚½).

⚠️ Attention: When using electrical components (pump, Arduino), be sure to insulate all contacts with heat shrink tubing. Even low voltage circuits (12V) can cause a short circuit if exposed to water.

1. Check the compatibility of the pump and power supply (voltage must match)

2. Buy spare brushes (they wear out quickly)

3. Choose a glue that is resistant to moisture (for example, β€œMoment Crystal”)

4. If using Arduino, make sure all sensors support 5V-->

3. Step-by-step instructions: tabletop car wash in 3 hours

Let's look at assembling the simplest model for cars Hot Wheels or Matchbox. This project is suitable for working together with a child aged 6–12 years.

Step 1: Making the frame

Take a plastic bottle with a volume 5 liters (for example, from under water). Cut off the top (neck) and bottom (bottom), leaving a cylindrical middle. This will be the main building of the car wash. For stability, glue the bottle to a flat base (for example, a 20x20 cm piece of plywood) using hot glue.

Step 2: Water Supply System

Make a hole in the side wall of the bottle with a diameter of 5 mm (drill or hot nail). Insert a cocktail straw into it, sealing the joint with plasticine or silicone sealant. Connect the other end of the straw to a small plastic container (for example, from Kindersurprise), which will act as a water reservoir. Fill the tank with water - when tilted, it will flow into the car wash body.

Step 3: Brushes and wash

For brushes, use pieces of dish sponge or old toothbrushes. Attach them to toothpicks and secure them inside the bottle so that they lightly touch a passing car. For rotation, you can use a manual drive: attach the wheel from the construction set to the toothpick Lego and twist it with your finger.

Step 4: Decorative Elements

Paint the body with acrylic paints, stick on car wash logos cut out of paper (for example, KΓ€rcher or Mr. Wash). For realism, add a β€œcash register” from a matchbox and a β€œdrying rack” from a piece of mosquito net.

The finished model will wash cars in 10–15 seconds. To prevent water from splashing, carry out the procedure in the bathroom or on a tray.

How to improve your tabletop car wash

1.Add LED backlight (use 3V battery and LEDs).

2. Install mini fan from a computer for drying (powered by USB).

3. Do automatic water supply using a syringe and an IV tube.

4. 3D print realistic parts (such as a washing gun).

4. Car wash with Arduino: circuit and programming

For those who are familiar with the basics of electronics, we will offer a car wash diagram with an automatic cycle: water supply β†’ brush washing β†’ drying. You will need:

  • πŸ–₯️ Arduino Uno or Nano;
  • πŸ”Œ 12V pump (for example, DC Water Pump);
  • πŸŒ€ Servo SG90 for brushes;
  • πŸ’¨ 5V fan for drying;
  • πŸ’§ Humidity sensor DHT11 (optional).

Connect the components according to the diagram:


// Example code for Arduino (simplified version)

#include

Servo brushServo; // Servo for brushes

const int pumpPin = 9; // Pump on pin 9

const int fanPin = 10; // Fan on pin 10

void setup() {

brushServo.attach(6);

pinMode(pumpPin, OUTPUT);

pinMode(fanPin, OUTPUT);

}

void loop() {

// 1. Water supply (5 seconds)

digitalWrite(pumpPin, HIGH);

delay(5000);

digitalWrite(pumpPin, LOW);

// 2. Rotate the brushes (10 seconds)

brushServo.write(90);

delay(10000);

brushServo.write(0);

// 3. Drying (7 seconds)

digitalWrite(fanPin, HIGH);

delay(7000);

digitalWrite(fanPin, LOW);

// Pause before next loop

delay(3000);

}

For power supply, use the power supply on 12V/2A (for example, from a router). Do not connect the pump directly to the Arduino - use a relay or transistor to control a high-power load.

⚠️ Attention: When testing a circuit, first check all connections with a multimeter in test mode. A short circuit can damage the Arduino or power supply.

5. Common mistakes and how to avoid them

Even with simple projects, beginners make mistakes that lead to leaks, breakdowns, or unstable operation. Here are the most common:

  • πŸ’¦ Water leaks - arise due to poor-quality sealing of joints. Use silicone sealant (for example, Moment Germent) and let it dry 24 hours.
  • ⚑ Pump overheating β€” the cause is usually dry running. Always check the water level in the tank.
  • πŸŒ€ Brushes don't rotate β€” check if the axle is jammed. Lubricate it WD-40 or graphite lubricant.
  • πŸ”Œ Arduino doesn't control load - make sure you use transistor IRFZ44N or relays for powerful devices (pump, fan).
  • 🎨 The paint is peeling off - before painting the plastic, treat the surface primer for plastic (for example, Kudo).

If your car wash is not working properly, check:

  1. The voltage on the power supply (should be 12VΒ±0.5V).
  2. Integrity of wires (especially in solder areas).
  3. Keep the brushes clean (hair and dirt can block rotation).

1. After each use, drain the water and dry the tank.

2. Lubricate moving parts with silicone grease once a month.

3. Store the model in a dry place, avoiding direct sunlight (the plastic may become deformed).-->

6. Safety: rules for children and adults

A toy car wash, especially one with electrical components, requires the following precautions:

  • πŸ‘Ά For children under 8 years old - use only mechanical models without electricity. Replace water with wet wipes.
  • ⚑ When working with Arduino β€” turn off the power when assembling the circuit. Do not touch components with wet hands.
  • πŸ”₯ Soldering work - carry out in a ventilated area, use lead free solder (for example, Sn96.5/Ag3.0/Cu0.5).
  • πŸ’§ Working with water - Place the car wash on a waterproof surface (for example, a tray or bathtub).

If the project is intended for a school exhibition, prepare safety instructions and place it next to the model. For example:

RULES OF USE:

1. Do not touch moving brushes.

2. Do not fill water above the MAX mark.

3. Do not turn on without adult supervision.

7. Where to get parts cheaper: life hacks and places to buy

Many car wash components can be found for free or purchased at a discount. Here are verified sources:

Detail Where to look Approximate price, β‚½ Alternative
Pump 12V Aliexpress, aquarium stores 400–800 Old windshield washer from a car
Brushes Fix Price, hardware stores 50–150 Toothbrushes, dish sponges
Plastic box (case) Container stores (for example, "Packaging") 200–500 Plastic bottles, food containers
Arduino Nano Aliexpress, "Chip and Dip" 300–600 Old motherboards (you can desolder the microcontroller)

There is no point in saving on the pump - cheap models often break down after 1-2 months. But brushes, housing and decorative elements are easy to find among household waste. For example, water tubes can be made from cocktail straws, and base - from a shoe box lid.

πŸ’‘

The most budget option for a car wash will cost 200–300 rubles if you use available materials. However, for a long-lasting model with an electric drive, you will need to invest 1500-3000 β‚½ in a pump, Arduino and brushes.

Frequently asked questions (FAQ)

Can a toy car wash be used to wash real bikes?

Yes, but only if the model is designed for heavy weight and has a durable frame (for example, made of metal profiles). A bicycle will require a pump with a power of at least 1000 l/h and brushes made of hard plastic. Don't forget about the drainage system so that water does not accumulate under the wheels.

How to make a car wash without electricity?

Use a manual drive: for example, rotate the brushes using a crank (like in an old washing machine) or pump water with a bulb pump (like in a spray bottle). Suitable for desktop model siphon principle: The water tank is located above the body, and the water flows by gravity through the tube.

Which paints are safe for children and do not wash off with water?

For plastic and wood use acrylic paints (for example, Gamma or Decola). After drying, coat the surface acrylic varnish (matte or glossy) - this will protect the drawing from moisture. Suitable for metal parts aerosol paint in cans (for example, Kudo).

How to program Arduino for different washing modes?

Use buttons or potentiometer to select a mode. Example code for 3 modes (quick/standard/deep wash):


int mode = 0; // 0 - fast, 1 - standard, 2 - deep

void loop() {

if (digitalRead(buttonPin) == HIGH) {

mode = (mode + 1) % 3; // Switch modes

delay(300); // Anti-bounce

}

switch(mode) {

case 0: quickWash(); break;

case 1: standardWash(); break;

case 2: deepWash(); break;

}

}

For each mode, set your own time delays in the functions quickWash(), standardWash() and deepWash().

Where can you display your toy car wash?

Options:

  • 🏫 School project exhibition β€” suitable for models with Arduino and decorative elements.
  • πŸŽͺ Children's parties β€” organize a β€œcar wash” as an attraction.
  • 🏑 Summer cottage plot - A full-size bicycle car wash would be a useful addition.
  • πŸ“Έ Social networks β€” take a video of the assembly process and post it on YouTube or TikTok (hashtags #DIY #Car Wash With Your Hands).