一种新的喷涂颜料方式
A New Way to Spray Paint Color

原始链接: https://spectrum.ieee.org/spray-paint-color-creator

## Spectrum:可定制的喷漆系统 传统喷漆艺术家通常需要为每种颜色准备一罐喷漆,因为一旦喷漆气溶胶化后就无法混合。工程师James Provost受到艺术家们携带大量喷漆罐到工作现场的启发,决心改变这种状况。他的解决方案“Spectrum”是一个在加压状态下混合基础颜色(红色、黄色、蓝色和白色)的系统,从而实现即时颜色创建。 Spectrum利用定制设计的、高速旋转捏合阀,由Arduino Nano控制。该阀精确地使用脉宽调制调节每种颜色的流量——以30-250毫秒的持续时间打开和关闭阀门,以达到所需的比例。最初使用标准阀门的尝试因压力差异和堵塞而失败,导致开发出这种独特的常闭阀。 由此产生的系统,主要由3D打印部件构成,成本低于150美元,可以生成数百种不同的颜色。扳机上的力传感器甚至可以实现平滑的颜色渐变。在分享了在线视频后,Provost现在正在创建易于理解的构建说明,希望以此赋能艺术家,让他们使用这种创新工具。项目详情和技术文档可在[https://www.sandeshmanik.com/projects/spectrum](https://www.sandeshmanik.com/projects/spectrum) 找到。

一项新的喷涂技术,详细内容发表在最近的IEEE文章中,并在Hacker News上分享,允许在喷涂过程中按需混合颜色。该设备使用白色油漆作为基础,并结合少量彩色颜料来创造广泛的色调。 评论区的讨论集中在该技术的色彩模型上——考虑到它不像传统印刷那样依赖白色底色,RGBW是否优于CMYK。用户还思考了使用*大部分*白色油漆并添加少量颜色的可行性,考虑到混合时通常只需要很少的颜色。有人提出了对混合油漆批次一致性的担忧,但有人认为该设备的反馈机制可以解决这个问题。一位用户最初质疑该设备是否可以喷涂绿色,但视频很快就证明了这一点。
相关文章

原文

We’re all familiar with mixing red, yellow, and blue paint in various ratios to instantly make all kinds of colors. This works great for oils or watercolors, but fails when it comes to cans of spray paint. The paint droplets can’t be blended once they are aerosolized. Consequently, although spray cans are great for applying even coats of paint to large areas very quickly, spray-paint artists need a separate can for every color they want to use—until now.

Back in 2018, when I first saw professional spray artists lugging dozens to hundreds of cans to their work sites, I was inspired to start noodling on a solution. I’ve worked at Google X, Alphabet’s “moonshot factory,” as a hardware engineer, and I’m now building a startup in mechanical-design software. I’m no painter, but I know my way around mechatronics.

I wanted my solution to be inexpensive and simple enough to build as a DIY project and functional enough for an artist to use, without breaking their flow. So I began prototyping a system that combines base colors while they are still in pressurized form from off-the-shelf cans.

An illustration of how a spring-loaded arm driven by a stepper motor with a roller bearing at one end opens and closes a tube by pressing down on it. This new rotary pinch valve can be opened and closed in tens of milliseconds and prevents backpressure from clogging lines.James Provost

I tried a few approaches where pres-surized paint from the base-color cansfed through tubes into a mixing channel, before emerging from a spray head. To control the ratios, I decided to borrow a trick that would be familiar to anyone who’s ever had to control the bright-ness of an LED using a microcontroller: pulse-width modulation. Initially, I used electronically controlled solenoid valves to release the paint from the cans. The paint would flow into a mixing channel for a relative duration that corresponded to the ratio of the base colors required to make a given hue. However, this failed because different cans never have the same internal pressure. Whenever two valves were open at the same time, the pressure difference would make paint flow backward into the lower-pressure can.

As an alternative, I removed the mixing channel and tried making the paint pulses from each can sequentially converge into a tube so that no more than one valve would ever be open at a time. Surprisingly, this worked perfectly. The backflow was eliminated, and it turned out that the natural turbulence of the flow was sufficient to mix the paints. Let’s say you want to produce a clementine orange color. This requires yellow and red paint in a ratio of 1:2, so the yellow valve opens for a period of time, and then the red valve opens for twice as long. The system then keeps repeating this cycle of pulses in a rapid pace to instantly create the spray-paint color you want.

The theory is straightforward, but making this work in practice took quite a bit of experimentation. First, I had to determine the actual durations of pulses that would produce evenly mixed colors, not just their ratios. I also needed to work out the size of the tubing (too narrow and you’d get low spray force; too wide and you’d have paint accumulating in the tubes). Eventually I settled on a maximum pulse duration of 250 milliseconds and a tube diameter of 1 millimeter.

Even though the system worked, the solenoid valves I used constantly clogged up. Designed for water purifiers, the valves didn’t prevent paint from entering the mechanism, where the paint would harden. Moreover, when the valves were turned off, they could stop backflow only if the inlet remained pressurized. So disconnecting a paint can from the system would cause instant leaking. Other off-the-shelf valves I tried couldn’t cycle fast enough and were too expensive.

I had some spectacular failures along the way of the sort that only pressurized paint can provide.

So I created my own mechanism: a high-speed, electronically controlled, rotary pinch valve. It has a stepper motor that rotates a lever with a rolling bearing to constrict fluid flow inside a flexible tube. This concept isn’t new—there’s something like them in every peristaltic pump. But I added a spring to firmly hold the lever in the closed position against any back pressure when the motor isn’t powered, making it a normally closed valve that isolates the attached can. Additionally, the valve is fast enough to be open for as little as 30 milliseconds.

I went through four major prototypes of the system before reaching a working version, and I had some spectacular failures along the way of the sort that only pressurized paint can provide. The final version uses four base colors—red, yellow, blue, and white—with the color mix controlled by four knobs attached to an Arduino Nano and a small display. The flow of paint is triggered by a push button placed above the spray head, similar to a spray can’s nozzle.

A diagram showing the arrangement of valves and control wires, along with a timing diagram of valves opening and closing, showing the red paint open for twice as long as the yellow paint in a continuous cycle. Cans holding base colors (A) are attached to valves (B). An Arduino-based control panel (C) opens and closes valves to mix paint before it is aerosolized (E). By quickly opening and closing valves with varying durations in sequence (D), you can mix paint in specific ratios to create desired colors.James Provost

The length of time a base color’s paint valve can be open is one of eight values between 30 and 250 ms. This means that the entire system—which I coincidentally dubbed Spectrum—can create hundreds of distinct spray-paint colors instantly. It produces less than 84 (or 4,096) colors because duration ratios that are a multiple of each other will produce the same color—for example, 2:3 and 4:6. I added a force sensor to the push button, which allows for a gradient: Two color mixes can be dialed in, and as I increase my thumb’s pressure on the button, the paint mix shifts from one color to the other.

Spectrum’s various fixtures are 3D-printed, and project files and videos are available through my website at https://www.sandeshmanik.com/projects/spectrum. Preprints of technical descriptions of the rotary pinch valve and mixing methodology are available on TechRxiv. The total cost for the bill of materials is less than US $150.

Working on and off on the side for about seven years, I finally finished developing my system and writing the documentation in late 2025. After I posted a video to social media, I was heartened by the immediate positive response from spray-paint artists around the world. I’m now creating step-by-step instructions so that nontechnical people can build their own Spectrum paint sprayer. I look forward to seeing what creations artists out in the wild make!

From Your Site Articles

Related Articles Around the Web

联系我们 contact @ memedata.com