Introduction: Build Your Own (at)tiny Colour Sensor.
A few months ago, I saw an instructable by fjordcarver on how to build a coloursensor with an RGB led and an LDR. It inspired me to try whether I could improve his design.
Here are the things that I wanted:
- The sensor should have as few pins as possible.
- It should work as a stand-alone device. All calculations should be done on the device.
- It should have a triggered mode and a continuous mode.
- All parameters should be programmable.
- Calibration parameters should be stored in the EEPROM of the microcontroller.
- Firmware updates should be made possible
- And finally: size does matter ⇒ The smaller the better.
I did choose an smd attiny85 as the brain of the sensor. It has a small footprint but a large enough flash for the calculations. It also has just enough pins for the project (all eight pins are used).
One of the problems of the attiny is that it doesn't have a build in bootloader sector. So I needed to find a bootloader that would work on it. I tried a few and most didn't work for me, until I stumbled on the tinyloader bootloader. It's fast and only 256 bytes long and it did the trick. It also allowed me to make a sensor with only 4 pins : Vcc, GND, TX and RX.
I made my sensor with smd parts but you can ofcourse make yours with thru-hole parts
Step 1: How Does It Work?
Colour is nothing more than different wavelengths of light that are reflected by objects. Each material will reflect a different combination of wavelengths, resulting in different colours.
With our led we send 3 different wavelenghts to a surface (aka red, green and blue). The LDR measures how much of each wavelength is reflected and sets its resistance accordingly. The LDR is set up with a 10K resistor as a voltage divider. The resulting voltage for each wavelength is read by the ADC of the microcontroller and the results are 3 bytes, one for each colour.
These 3 bytes can then be used to reconstruct the colour.
Step 2: What Do You Need?
- An attiny85
- An RGB led (4-pin PLCC)
- An LDR
- A 10K resistor
- A 220Ohm resistor
- a row of 4 male header pins
- Stuff to make your own pcb
- Solderpaste and a hot air soldering station
- An SOP to DIL converter so that you can program the bootloader into the attiny
- An USB to UART bridge
Step 3: The Circuit
The circuit is pretty similar to Fjordcarvers original design. The only exception is that I used an LED with common anode, instead of a common cathode.
Step 4: Code Part 1: the Bootloader
I was looking for a bootloader on the internet and after a long night of searching, I found a folder named tinyload3 with a bootloader, build by Peter Dannegger, that fitted in my attiny85. I used that one, but later found out that it was a predecessor of the 'fast tiny & mega UART bootloader' -project that can be found on AVRfreaks.
As I used the old version, I'll explain that one but the new version works pretty similar.
When you open tinyload3.rar, you'll find a bunch of premade bootloaders for all kinds of attiny's and mega's. However there is no bootloader for the attiny85. To make one, you can open the assembler file of one of the other AVR's, make the needed changes and rebuild the hex-file.
I used the T45.asm. I changed .include "tn45def.inc" to .include "tn85def.inc" and changed the pins for RX and TX to the appropriate ones. Pb5 for TX and Pb3 for RX.
I added the hex-file for the attiny85 just to save you some work.
Now you can use your regular programmer to upload the bootloader. When you do so, you also need to set the fuses so that the attiny uses the 8MHz internal Osc and so that the reset is disabled on pin 5. Remember that when you disable the reset, you won't be able to program the attiny with your ISP programmer anymore.
If everything worked ok, you should be able now to upload code into your attiny via the bootloader. To do so, connect the newly created TX and RX pins of the attiny to those of your USB-UART bridge and connect it to you pc. Make sure that you can switch the power of your attiny separately.
In the tinyload3 folder, you can find tboot.exe. To use it enter the following command:
tboot.exe -cnumber COMport -pfilname
Only COM0 to COM4 are accepted, so you might have to change the number of the COMport that you are using.
Hit enter and only then switch on the power to the attiny. This way the bootloader will detect that there is some code to be uploaded and you'll see the uploading process progressing.
Step 5: Code Part 2: Colour Sensing.
To do the colour sensing, I basically used Fjordcarvers code without any modifications. I only translated it to bascom and added serial communication to set the modes and the parameters, but the basic concept didn't change. I would like to suggest that you read his description of the code as he provides a very clear explanation of all the steps.
I added my code in the txt-file. It's still a bit rough around the edges, but it works. I also added a flowchart of the code to explain how the code works.
34 Comments
6 years ago
Hey,
It would be a lot of help if you can upload a video of the same.
7 years ago
Hey dude, thats really cool.
Could you output the .brd as a dxf file?
Reply 7 years ago
I'll try...
Reply 7 years ago
What might be easier is if you export the brd as an image using EAGLE or other schematic software. Then evildoctorbluetooth can convert the image to their preferred format. If they want DXF, import the image in Adobe Inkscape, then Save As... DXF in the list of available formats.
Great work on this project by the way! :) i love attinys.
8 years ago on Introduction
this is very helpful. i want a sensor that can sense various colors of fabrics and their shades. would i be needing color recognition detector/sensor OR a microspectrometer ?
how far do i have to keep the object in order to sense it correctly.?
please help me with this, i have been searching for the same from a while. this is not my area of expertise.
8 years ago on Introduction
To make this work with moving objects, it should be possible to use a photo transistor and take the red sample, green sample and blue sample at very high speed. LEDs and photo transistors are very fast and the attiny is capable of taking 15 thousand ADC samples per second.(see datasheet page 122)
8 years ago on Introduction
nice project....I am doing a color sorting application to sort the colored plastic pumps that holds the cotton thread in textile mills....i have attached the sample image of the colored plastic tubes that i want to separate......will this component be helpful for such application??
Reply 8 years ago on Introduction
It depends. This methode is good to detect the colors of static objects but not of moving objects as the sensor needs a while to detect the color. Also it works best in an area without a lot of ambient light. If there is ambient light, it needs to be at a relatively constant level. But I imagine that those pumps come only in a few colors so it might be doable to work with large detectionmargins.
This device is not as accurate as commercial ic's. Those start to get cheaper these so maybe that is also something you should look at.
9 years ago on Step 3
If you want build it on one-sided board, here is download (zip w/ eagle print)
Please read README
link to download (mediafire) http://bit.ly/IDpb7s
9 years ago on Introduction
nice.. i'm doing a similar project on colour sensor.. just checking.. can this project detects different shades of RGB?
Reply 9 years ago on Introduction
It has build in detection of shades but it is of course not as good in it as commercial dedicated sensors. If you work with arduino, then look up the code in Fjordcarvers project. The link is in this instructable.
Reply 9 years ago on Introduction
alright thanks.. sadly im not allowed to use arduino due to some technical reasons.. but I will take note of this project and see how I can implement it in my project..
9 years ago on Introduction
Can't help by notice, did you use rivets for via hole? nice !
Reply 9 years ago on Introduction
These are special rivets for vias. They come in various sizes from very tiny to sizes where you still can fit a component thru them. Very handy stuff for prototyping.
10 years ago on Introduction
You surely can use some other microcontrollers or an arduino.
10 years ago on Introduction
Great instructable, but sadly we don't have attiny in the market here in Egypt any other recommended micro that can replace it?
10 years ago on Introduction
Nice Instructable!! I haven't been on in a while, good work, it looks great.
10 years ago on Introduction
We would like to see a video!!And where did you get those small RGB LED's
Reply 10 years ago on Introduction
I bought them at Leds-buy.nl
Reply 10 years ago on Introduction
kreeg ik eerder al een handig adresje van jou van de smdshop, Leds-buy is ook verdomd handig om te hebben.
Vraagje, hoe programmeer jij practisch je smd microcontrollers? met een dil kan ik hem in een voetje steken en later weer in de desbtrefefnde schakeling maar met SMD gaat dat wat lastig. Enige tips?
Ik wil, als is het maar om het weer eens een keer te proberen, een smd versie van een attiny85 schakeling proberen.