CN208714816U - One kind being based on trichromatic pigmented tinting device - Google Patents

One kind being based on trichromatic pigmented tinting device Download PDF

Info

Publication number
CN208714816U
CN208714816U CN201820733343.2U CN201820733343U CN208714816U CN 208714816 U CN208714816 U CN 208714816U CN 201820733343 U CN201820733343 U CN 201820733343U CN 208714816 U CN208714816 U CN 208714816U
Authority
CN
China
Prior art keywords
color
pigment
chip microcontroller
loader
trichromatic
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related
Application number
CN201820733343.2U
Other languages
Chinese (zh)
Inventor
张健华
刘毅
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shaanxi University of Science and Technology
Original Assignee
Shaanxi University of Science and Technology
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Shaanxi University of Science and Technology filed Critical Shaanxi University of Science and Technology
Priority to CN201820733343.2U priority Critical patent/CN208714816U/en
Application granted granted Critical
Publication of CN208714816U publication Critical patent/CN208714816U/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Abstract

One kind being based on trichromatic pigmented tinting device, including pigment cylinder, the pigment cylinder is divided into magenta, it is yellow, green three cylinders, single-chip microcontroller connects control switch fixed on pigment cylinder, trichromatic system is implanted into single-chip microcontroller, single-chip microcontroller connects color loader, the outlet of three cylinders of pigment cylinder connects discharge nozzle, mini-sized blender is connected on discharge nozzle, single-chip microcontroller controls the switch of three pigment cylinders, pigment trichromatic system is implanted into single-chip microcontroller, single-chip microcontroller connects color loader, when needing the pigment of a certain color, corresponding color is inputted on color loader, single-chip microcontroller generates corresponding color instruction (magenta 255;Huang 0;0) blueness, and then controls the control switch and pump of three pigment cylinders, squeeze out the pigment of corresponding amount, stir evenly by mini-sized blender, allot the pigment of needs.The pigment of any color can be produced according to the control of RGB ratio.Easy to use, high-efficient, color is quasi-.

Description

One kind being based on trichromatic pigmented tinting device
Technical field
The utility model belongs to regulating device technical field, and in particular to one kind is based on trichromatic pigmented tinting device.
Background technique
Nowadays pigment is to being particularly important, but the good pigment of a box for the student of student, especially art class, Most importantly various colors, but to will result in paint box big more for color, it is not portable, it is such as most common in artistic creation Traditional Chinese Painting, pigment, watercolor are required in oil painting to use pigment and carry out drawing works, in drawing process, need to be adjusted using paintbrush Color, existing toning is to stir multiple pigment by paintbrush by the manpower of painter, is achieved in toning, when mixing colours in this way It is time-consuming and laborious, and long-time modulates color will cause hand fatigue, increases trouble, reduces drafting effect.
Summary of the invention
In order to overcome the above-mentioned deficiencies of the prior art, the purpose of the utility model is to provide one kind to be based on trichromatic pigment Three primary color theory is applied to pigmented tinting device, then carries out discharging control to three primary colors with single-chip microcontroller by regulating device, can be according to three The control of primary colors ratio produces the pigment of any color.
To achieve the goals above, the technical solution adopted in the utility model is:
One kind is miniature based on trichromatic pigmented tinting device, including pigment cylinder, single-chip microcontroller, control switch, color loader Blender, discharge nozzle, the pigment cylinder are divided into pinkish red, yellow, green three cylinders, and the control fixed on single-chip microcontroller connection pigment cylinder is opened It closes, trichromatic system is implanted into single-chip microcontroller, single-chip microcontroller connects color loader, and the outlet of three cylinders of pigment cylinder connects discharging It manages, is connected to mini-sized blender on discharge nozzle.
The magenta of the pigment cylinder, Huang, green three cylinders are equipped with pump.
The single-chip microcontroller, control switch, color loader, mini-sized blender, pump are supplied by circuit connection by battery Electricity, single-chip microcontroller control color loader, and color loader controls the control switch on pigment cylinder and opens and pump running.
The utility model has an effect to be:
Three primary color theory is applied to pigmented tinting device by this structure, then carries out discharging control to three primary colors with single-chip microcontroller, can To produce the pigment of any color according to the control of RGB ratio.Easy to use, high-efficient, color is quasi-.
Detailed description of the invention
Fig. 1 is the structural schematic diagram of the utility model.
Specific embodiment
The utility model is further discussed below below in conjunction with attached drawing.
As shown in Figure 1, a kind of be based on trichromatic pigmented tinting device, including pigment cylinder 6, single-chip microcontroller 1, control switch 2, face Color loader 3, mini-sized blender 4, discharge nozzle 5, the pigment cylinder 6 divide for pinkish red, yellow, green three cylinders, the connection face of single-chip microcontroller 1 Fixed control switch 2 on barrel 6 is implanted into trichromatic system in single-chip microcontroller 1, and single-chip microcontroller 1 connects color loader 3, pigment cylinder 6 The outlets of three cylinders connect discharge nozzle 5, be connected to mini-sized blender 4 on discharge nozzle 5.
The magenta of the pigment cylinder 6, Huang, green three cylinders are equipped with pump.
The single-chip microcontroller 1, control switch 2, color loader 3, mini-sized blender 4, pump are by circuit connection, by electric power storage Pond power supply, single-chip microcontroller 1 control color loader 3, and color loader 3 controls the control switch 2 on pigment cylinder 6 and opens and pump fortune Make.
The utility model obtains working principle:
Single-chip microcontroller controls the switch of three pigment cylinders, and pigment trichromatic system is implanted into single-chip microcontroller, and single-chip microcontroller connects color Loader inputs corresponding color (red) when needing the pigment of a certain color (by taking red as an example) on color loader, Single-chip microcontroller generates corresponding color instruction (magenta 255;Huang 0;0) blueness, and then controls the control switch and pump of three pigment cylinders, squeeze The pigment of corresponding amount out, stirs evenly by mini-sized blender, allots the pigment of needs.
The trichromatic system is designed by C programmer and is realized, programmed algorithm is as follows: [cpp] view plaincopy typedef unsigned short TUINT16; [cpp] view plaincopy #define RGB565(R, G, B) \ (((TUINT16) ((R) >> 3)) << 11) + (((TUINT16) ((G) >> 2)) << 5) + ((TUINT16) ((B) >> 3)) #define RGB555_TO_RGB565(X) \ ((((X)&0x7FE0) << 1)|((X)&0x003F)) #define COLOR_BLACK RGB565(0, 0, 0) #define COLOR_DRED RGB565(64, 0, 0) #define COLOR_DGREEN RGB565(0, 64, 0) #define COLOR_DBLUE RGB565(0, 0, 64) #define COLOR_DYELLOW RGB565(64, 64, 0) #define COLOR_DPURPLE RGB565(64, 0, 64) #define COLOR_DDIAN RGB565(0, 64, 64) #define COLOR_GRAY RGB565(64, 64, 64) #define COLOR_RED RGB565(255, 0, 0) #define COLOR_GREEN RGB565(0, 255, 0) #define COLOR_BLUE RGB565(0, 0, 255) #define COLOR_YELLOW RGB565(255, 255, 0) #define COLOR_PURPLE RGB565(255, 0, 255) #define COLOR_DIAN RGB565(0, 255, 255) #define COLOR_WHITE RGB565(255, 255, 255)。

Claims (3)

1. one kind is based on trichromatic pigmented tinting device, including pigment cylinder (6), single-chip microcontroller (1), control switch (2), color input Device (3), mini-sized blender (4), discharge nozzle (5), which is characterized in that the pigment cylinder (6) is divided into pinkish red, yellow, green three cylinders, Single-chip microcontroller (1) connects control switch (2) fixed on pigment cylinder (6), is implanted into trichromatic system, single-chip microcontroller (1) in single-chip microcontroller (1) It connects color loader (3), the outlet of three cylinders of pigment cylinder (6) connects discharge nozzle (5), and discharge nozzle is connected to miniature stir on (5) Mix device (4).
2. according to claim 1 a kind of based on trichromatic pigmented tinting device, which is characterized in that the pigment cylinder (6) magenta, Huang, green three cylinders are equipped with pump.
3. according to claim 1 a kind of based on trichromatic pigmented tinting device, which is characterized in that the single-chip microcontroller (1), control switch (2), color loader (3), mini-sized blender (4), pump are by circuit connection, by storage battery power supply, monolithic Machine (1) controls color loader (3), and color loader (3) controls the control switch (2) on pigment cylinder (6) and opens and pump running.
CN201820733343.2U 2018-05-17 2018-05-17 One kind being based on trichromatic pigmented tinting device Expired - Fee Related CN208714816U (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201820733343.2U CN208714816U (en) 2018-05-17 2018-05-17 One kind being based on trichromatic pigmented tinting device

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201820733343.2U CN208714816U (en) 2018-05-17 2018-05-17 One kind being based on trichromatic pigmented tinting device

Publications (1)

Publication Number Publication Date
CN208714816U true CN208714816U (en) 2019-04-09

Family

ID=65970449

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201820733343.2U Expired - Fee Related CN208714816U (en) 2018-05-17 2018-05-17 One kind being based on trichromatic pigmented tinting device

Country Status (1)

Country Link
CN (1) CN208714816U (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110303816A (en) * 2019-05-13 2019-10-08 郑州工程技术学院 A kind of fine arts dedicated full-automatic feeding paint finishing and method

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN110303816A (en) * 2019-05-13 2019-10-08 郑州工程技术学院 A kind of fine arts dedicated full-automatic feeding paint finishing and method

Similar Documents

Publication Publication Date Title
CN208714816U (en) One kind being based on trichromatic pigmented tinting device
CN103817030A (en) Portable color mixing and spraying device with color matching function
CN204684979U (en) A kind of coating computerized color matching Weighing system
CN108855676A (en) A kind of automatic spraying color matching system
CN209287106U (en) A kind of pigmented tinting device
CN206826301U (en) A kind of art toning device
CN108189616A (en) A kind of drawing electronics ager
CN206560950U (en) A kind of emulsion paint stirring application device that need not dip in paint
CN205736605U (en) A kind of intelligence ager
CN204726138U (en) Device is mixed well in a kind of pigment color matching
CN205915702U (en) 3D stamping ink is box -packed to be put
CN204147818U (en) Coating material agitator
CN206030246U (en) Dry colour mixture material system device of imitative stone material texture
CN206676331U (en) A kind of bleaching equipment Automatic color matching device
CN211754705U (en) Paint color mixer
CN206049211U (en) Fine arts color paste deployment device
CN206826163U (en) printing ink color matching system
CN106823978A (en) A kind of bleaching equipment Automatic color matching device
CN205410290U (en) Multifunctional drawing device for art design
CN201855666U (en) Paint stirring and supplying apparatus
CN200988298Y (en) Multicolor filling machine
CN205467396U (en) Color 3D printer
CN110126541A (en) A kind of color sketch plate
CN208194148U (en) A kind of Environmental-protection water-based ink is dispersed with stirring kettle
CN204953179U (en) Computer mixing of colors paint spraying machine

Legal Events

Date Code Title Description
GR01 Patent grant
GR01 Patent grant
CF01 Termination of patent right due to non-payment of annual fee
CF01 Termination of patent right due to non-payment of annual fee

Granted publication date: 20190409

Termination date: 20200517