Flickering lamp

This example shows how to control a mains lamp using a 240V relay board and an Arduino Uno. The idea is to randomly flicker the light on and off, similar to an old strip light when it becomes a bit old, or the starter is failing.

WARNING: Don’t mess with mains electricity, unless you are very confident about what you are doing. Mains supply can kill. If in doubt, get a qualified electrician/engineer to assist you.

Controller Board

The controller board is a cheap off-the-shelf 4-port 240V, 10A relay module. For this example I have just used an Arduino UNO to control it, though I will eventually replace this with an ATTiny85 as I need only 4 ports. The relay module is similar to this:

RelayBoard

4-port relay module

Originally, I powered the relay module through the Arduino using the 5V output, but this affected the operation of the relays, and led to erratic behaviour – the input lights for the relay would flash on and off, but the relay would not change state. So instead, the relay board is powered using a separate power supply, and is connected to the Arduino using only the inputs and a GND connection.

Arduino Sketch

The C code for controlling the is simple: generate a random integer between 8 and 11 (those are the port numbers on the Arduino that I have used) and use that generated number to toggle the state of a associated port. Do this over and over …

[code language=”css”]
#define INTERVAL 50

#define RELAY1 8 // Relay 1 is on pin 8, etc.
#define RELAY2 9
#define RELAY3 10
#define RELAY4 11

int switchState[4] = {0, 0, 0, 0};
int randomNumber = 0;

void lightSwitch(int state, int lampNumber);

void setup() {
// Relays are on pins 8 – 11
pinMode(RELAY1, OUTPUT);
pinMode(RELAY2, OUTPUT);
pinMode(RELAY3, OUTPUT);
pinMode(RELAY4, OUTPUT);

// The relays are active low, so pull them low to close the switch
digitalWrite(RELAY1, LOW);
digitalWrite(RELAY2, LOW);
digitalWrite(RELAY3, LOW);
digitalWrite(RELAY4, LOW);

void loop() {
// Randonly switch on and off a set of 4 lights

// On this cycle generate a lamp number
int randomNumber = random(20);

// Now toggle that lamp
if (randomNumber >= 8 && randomNumber <= 11) {
toggleSwitch(randomNumber);
}

//Serial.println(randomNumber);
delay(INTERVAL);
}

void toggleSwitch(int switchNumber) {

if (switchState[switchNumber – 8] = ~switchState[switchNumber – 8]) {
digitalWrite(switchNumber, HIGH);
} else {
digitalWrite(switchNumber, LOW);
}

}
[/code]
Here’s a video of the lamp controller:

You can hear all four relays switching on and off, which adds to the effect.

To Do

  1. Test this on the strip lights.
  2. Make board with ATTiny85 and voltage regulator.
  3. Place relay module and controller into an enclosure.
  4. Find cheap 240V – 12V power supply to power the relay module and ATTiny.
Posted in Uncategorized | Leave a comment

ATTiny85 Programmer

The other project for this weekend was a really simple ATTiny85 programmer ‘shield’ for an Arduino Uno. This board fits on top of the Uno and effectively turns the Uno into a programmer for the ATTiny chip. The programmer takes about 20 minutes to assemble, and requires nothing more than a piece of stripboard, a dip socket and a 10μF capacitor. I have also added an LED (+ 220Ω resistor) to the board so that I can test the ATTiny by uploading a blink sketch.

Stripboard View

I have used a 9 x 25 stripboard (a standard size you can by cheap off ebay), as it was what I had to hand. Of course, you could use a dedicated Arduino proto shield, which would look a lot neater and fit better.

DSCN4465

Side views:

 

Fritzing View

Below are the Fritzing diagram for the programmer. On the left is the topside to show the placement of the components (note that the top of the stripboard has no strips on it – they are shown here for guidance only). The right view shows the reverse of the board, where the strips have been cut. I have a little tool for doing this, but a 4mm drill bit would work just as well.

ATTinyProgrammer_bb

Components

9 x 25 single-sided stripboard
8 pin DIL socket to fit the ATTiny
1 x 10μF capacitor
1 x 220Ω resistor
1 x 3mm LED
single core wire
1 x 9 pin male header, 1 x 7 pin male header
1 x ATTiny85 to program

Assembly

Start by soldering the resistor to the board, followed by the jumper wires. Then add the DIL socket.

Before soldering the headers, place the headers into the stripboard , and then onto the socket on the Arduino and push them into place. Using a flat metal object (such as the side of a pair of tweezers) press on top of the headers to push the pins down so that they are flush with the plastic body. This helps to extend the pins, so they fit better into the sockets on the Uno. Now go ahead and solder the headers onto the stripboard.

Add the LED – don’t forget to get this the right way round : the longer leg (anode) goes next to the resistor.  Finally add the capacitor.

When you have finished soldering the stripboard, fit it on top of the Uno, making sure that the right hand side pin of the 7 pin header fits into the right hand GND socket on the Uno, and the  right hand side pin of the 9 pin header fits into socket 8 of the Uno. See image above.

Below is an image of the programmer with teh ATTiny in place. Note the location of the dot. I have coloured this in white to highlight it, bt on the chip itself it will be black.

DSCN4467

Using the programmer

  1. Before you can program the ATTiny with the Arduino IDE, you will need to add ATTiny hardware profile to the Arduino IDE. With version 1.6.4 you can use the tools > boards > boards manager to add the ATTiny. With older version you will need to manually download and install the profile. I would suggest you go here, as this is a good explanation of how to set it up.
  2. Place the programmer onto the Uno as described above. Plug the Uno into your computer using the USB cable.
  3. Open the Arduino programming IDE and open the sketch Examples > ArduinoISP. Compile and upload this sketch to the Uno. This temporarily converts the Uno into a programmer for the ATTiny.
  4. Make sure your ATTiny85 is in the socket on the programmer, and that it is the right way around. See image above for correct orientation.
  5. Open the standard blink sketch and change it to the following:

 

[code language=”cpp”]

void setup() {
// put your setup code here, to run once:
pinMode(3, OUTPUT);
}

void loop() {
// put your main code here, to run repeatedly:
digitalWrite(3, HIGH);
delay(100);
digitalWrite(3, LOW);
delay(100);
}

[/code]

  1. Change the board type in the Arduino IDE to ATTiny85 (how to do this will depend upon which version IDE you have) and select 8MHz internal clock. The COM port will be the one that the Uno is connected to.
  2. Compile and then upload the ATTiny sketch. You should see the LED blinking.

 

Posted in Uncategorized | Leave a comment

Digital battery tester for 9 V battery

This weekend’s programme consisted of several new projects (battery tester, switching mains lights using a microcontroller, an ATTiny programmer and a touch-based instrument), but this post is just about the battery tester. Having worked with schools over the summer using the littleBits modules, it became clear that we needed a simple device to check the state of the 9V batteries used to power the littleBits, as it was difficult to determine which ones were still useful and which should be binned. The problem is that batteries which would still illuminate the LED on the power module were not necessarily usable, as they might not have enough energy left in them to drive a motor or servo. Hence, we need a device to check the state of the charge, with a simple indicator that would show whether the battery was new, usable or dead.

Overview

The device constructed over the weekend is based upon an ATTiny85, and uses a simple (minded, as I’m not an engineer) circuit that puts the battery under load and checks the voltage across the load – the ‘load’ being a 100Ω resistor. A voltage divider is used to bring the voltage down from 9V to below 5V which the ADC on the ATTiny can read without killing it, and a diode is placed inline with the positive terminal so that accidental reverse polarity won’t wreck the microcontroller. Output is via three LEDs to show the battery state. Obviously, as battery is not required to power it!

Schematic

Here’s the schematic for the circuit. I drew it up in about 5 minutes, which is why it is not the most optimal (some components are upside down) … but I can understand it, and it works. I’m sure some of you clever engineers out there can make this a lot neater, but hey ho.

BatterytesterBB_schem

Here’s the component list:

R1 : 100Ω
R2, R3: 10kΩ
R4, R5, R6: 220Ω
R7: 10k trimmer (a 1k will work also)
D1: 1N4001
C1, C2: 10μF, 16V
U1: L7805CV
LEDs: 5mm, red, green, amber
IC1: Atmel ATTiny85
25 x 9 stripboard or equivalent

Notes: All resistors are 1//4W. The 7805 is overkill, but all I had.

Stripboard

Construction is fairly easy … unless you are prone to cockups like me. I had spent most of the day soldering, and was tired. So accidentally soldered the Voltage reg into the wrong place and had to cut it free and resolder.

Here’s the breadboard and a picture of the completed stripboard. Note that I had to change the location of the load resistor on the stripboard as I didn’t leave enough space on the board beneath the IC when I soldered the other components into place. Did I say that I was prone to cockups?

Batterytester_bb

Photos of the completed board (LED on wires, out of shot):

 

Code

The code for the tester is equally as simple minded as the circuit, and uses clunky Arduino-esque C. Here it is. Use it at your peril.

[code language=”cpp”]

// Kingarthursdog 06-12-2015

// Simple battery tester based upon an Atmel ATTiny85. Circuit is a simple voltage divider and load for the
// battery (100 ohm). When the battery measures more than a threshold value it is considered good, inbetween an
// upper and lower limit it is considered usable but nearing the end of its life, and below the threshold, it needs
// replacing. Uses red, amber and green LEDs for output. A trimmer is added to slide the scale to adjust the lower
// and middle limits.

#define UPPERLIMIT 78
#define LOWERLIMIT 68

#define VINPUT A2
#define TINPUT A3
#define ROUT 0
#define YOUT 1
#define GOUT 2

void setup() {
// Set up inputs for battery input, and for the trimmer
pinMode(VINPUT, INPUT);
pinMode(TINPUT, INPUT);

// LED outputs
pinMode(ROUT, OUTPUT);
pinMode(YOUT, OUTPUT);
pinMode(GOUT, OUTPUT);

// Set the LEDs off to begin with
digitalWrite(ROUT, LOW);
digitalWrite(YOUT, LOW);
digitalWrite(GOUT, LOW);

// Serial port for test output
//Serial.begin(9600);
}

void loop() {
// Scale the input from the battery pin to a range between 0 and 99 (just for simplicity)
double val = map(analogRead(VINPUT), 0, 1023, 0, 99);
int trimmer = map(analogRead(TINPUT), 0, 1023, -50, 50);
int lower = LOWERLIMIT + trimmer;

if (val > 0) {
if (val >= UPPERLIMIT) {
// Display green
digitalWrite(GOUT, HIGH);
digitalWrite(ROUT, LOW);
digitalWrite(YOUT, LOW);
} else if (val < UPPERLIMIT && val >= lower) {
// Display amber
digitalWrite(YOUT, HIGH);
digitalWrite(ROUT, LOW);
digitalWrite(GOUT, LOW);
} else {
// Display red
digitalWrite(ROUT, HIGH);
digitalWrite(YOUT, LOW);
digitalWrite(GOUT, LOW);
}
} else {
digitalWrite(ROUT, LOW);
digitalWrite(YOUT, LOW);
digitalWrite(GOUT, LOW);
}

// TEST OUTPUT
/*Serial.print(val);
Serial.print(", ");
Serial.println(trimmer);*/
delay(200);
}

[/code]

The Box

The tester works as it is, but needs a container. I’ll post that when I have (laser) cut it out and assembled it.

Posted in Uncategorized | Leave a comment

Driving a stepper motor with an ATTiny85

Tim Sunerton is currently a student in the Art Dept at The University of Reading and wanted to power a number of roller blinds with motors so that they would move up and down. He had already produced one which moved the blind down into a trough of paint and then lifted this back up again and smeared the paint onto a canvas (see Tim’s Blind). The blind was powered by a NEMA17 type stepper motor, a motor driver and an Arduino Uno. To attach the motor to the blind, a coupling was fabricated using the 3D printer.

For the current project (four blinds) and as an exercise in making things smaller I suggested that the blinds could be powered by ATTiny85 microcontrollers, as we don’t need all of the ports that the Uno offers. I built a test rig using some stripboard, a voltage regulator (plus a few capacitors) and an ATTiny85. The first image shows the ATTiny85 on the stripboard:

ATTiny85 with voltage regulator

ATTiny85 with voltage regulator

The two wires coming out of the left side of the board connect it to the power supply (in this case a bench power supply @ 12V); the wires at the right power the stepper driver and provide the pulses to drive the motor:

Stepper motor driven by an ATTiny85

Stepper motor driven by an ATTiny85

The ATTiny85 was programmed by piggy-backing on an Uno, which I have to say is very easy, although I eventually decided to make a programmer shield for the Uno so that you can just plug in the ATTiny85 directly into the shield and program it without needing to connect any wires. (Note: the stepper motor above was not used for Tim’s blind project – just for testing. He used much larger motors for his project).

I made three of these boards and Tim used them in his project. We also had to fabricate 4 new adapters for the blinds. One of the blinds was quite big, and even though Tim used a higher torque motor, the weight of the canvas on the blind pulled the blind down against the force of the motor. This was a bit of a problem, and the solution seemed to be in gearing the motor in some way to increase the torque. After a little thought, I came up with this:

Worm gear

Worm gear


A worm gear that would increase the torque by an order of magnitude, and stop the blind from pulling down. Here’s the work in progress as we tested out the motor driver (and killed it, though fortunately had a spare) and programmed the microcontroller for speed and the correct number of rotations:

Worm gear and Uno

Worm gear and Uno

We used the Uno for this particular arrangement after having blown the original driver. The motor was later attached to the frame using the bracket that we fabricated with the Cube:

Stepper motor bracket printed using the Cube

Stepper motor bracket printed using the Cube

Note the lack of hole in the centre of the front mount. Whoops. We later drilled a hole using a pillar drill.

Posted in Uncategorized | Leave a comment

Visual Programming for Arduino

ModKit have produced a visual programming environment for Arduino devices, based heavily upon the Scratch project at MIT. The ModKit Micro IDE uses the Scratch drag and drop interface for assembling simple programs which can be directly uploaded to the Arduino device, simplifying the process of writing Arduino sketches. I tried creating the basic ‘blink’ sketch using ModKit and it took less than a minute (about 30 seconds) to figure out. It uploaded without problem and worked just fine. Here is the blink sketch in ModKit:

ModKit interface showing the basic 'blink' sketch

ModKit interface showing the basic ‘blink’ sketch

Unlike the standard Arduino IDE, the program is not logically separated into setup and loop, but is all in one location. This was a bit puzzling at first, but doesn’t make a difference to the functioning of the code. The first block in the window shown above is the set up for the pinMode, that instructs the Arduino device to make pin 13 an output (rather than an input). The larger block underneath the pinMode is the loop structure, called ‘forever’, and takes the place of the loop function in Arduino. Inside the forever block are the two instructions that switch the LED on and off, and two delays. At the top of the window there is a ‘play’ button which compiles and uploads the program to the Arduino. It’s that easy.

There is a facility to observe the generated code, although this (at present) does not translate into C, but something in between. For instance, the forever block represents while(true) {}, so (like the rest of the Scratch/ModKit language) is basically a syntactic sugaring to remove the complexities of C programming.

I am looking forward to trying this out with some groups of students and some of my colleagues (Kate!) to see how well it works in the wild. For simple programs it seems to be a great way to get to grips with writing sketches for the Arduino, bringing programming to a wider audience.

Posted in Uncategorized | Leave a comment

Sensory Labels

We had our showcase events last week at the British Museum in London, where our group of co-researchers from the Tower Project demonstrated their multisensory ‘labels’ to the public. The response from the public was excellent, and the group did a fine job of explaining what they had created and why.

Below are the multisensory labels (twelve small sensory labels, plus the larger ‘chocolate box’) and some images taken at the event. You can see more of the event photos at the sister site SensoryObjects.

The twelve sensory labels created by the Tower Group

The twelve sensory labels created by the Tower Group

Designed by Adelana, and based upon a diamond ring she saw in the Enlightenment Gallery

Designed by Adelana, and based upon a diamond ring she saw in the Enlightenment Gallery

Sensory Label designed by Judith

Sensory Label designed by Judith. She wanted the sound to be triggered by bending the leather sandal that she made. The sound also triggers using a touch sensor on top of the box.

Sensory label designed by Tim

This sensory label is based upon objects from Egypt that are in the Enlightenment Gallery. The engraved design resembles Hieroglyphics, and the soundtrack tells a story about a trip to Egypt, from the designer’s perspective.

Sensory label designed by Michael

This sensory label is based upon a plate in the Enlightenment Gallery which originated in China. The soundtrack plays a collection of sounds relating to food (that could be placed onto the plate, and music related to China.

 

Julie's Heron

This sensory label has an engraving which was designed to resemble a heron that is in the Enlightenment Gallery.

 

Sensory label designed by Justin

This sensory label was inspired by the Warwick Vase. It reminded him of a football cup …

Sensory label design by Kelly

This sensory label was inspired by the statue of Paris in the Enlightenment Gallery.

Sensory label designed by Ryan

Sensory label designed by Ryan

 

Posted in Uncategorized | 2 Comments

Preview of new multisensory cushion controller

Here is a preview of new version of the multisensory cushion controller box. Unlike the previous version, which used an Arduino Uno and Adafruit Waveshield, this one uses a Lilypad MP3 player and is powered by a LIPO battery (not shown in the images). The battery is plugged into an Adafruit lipo charger, which is permanently connected to the MP3 player. The Lilypad MP3 player has built-in amplification which is loud enough to power the Visaton K50 speaker without needing an external amp. This new controller box is about 20mm thinner than the last version, and shorter. The whole controller box is 140mm x 70mm x 25mm and about 100g with the battery.

Preview of cushion controller

Preview of cushion controller

Posted in Uncategorized | Leave a comment

Photo Engraving for Sensory Labels

We have been experimenting a little more with the laser cutter and tried out a variety of settings for engraving photographic images. The early attempts were either too dark or had poor image resolution, and it turns out that the latter depends largely on how well the image is converted to a bitmap which the LaserScript can use (1-bit bitmaps only). A fellow laser cutter from the LaserScript forum (Dave) converted a photo for us which worked really well when we engraved it, so we did the rest of the images in a similar way. Using Photoshop, we scaled each of the photos to 15cm x 11cm, converted them to greyscale and then saved as a bitmap using diffusion dither at 300DPI. The settings on the laser cutter were: speed 300, power 20 and scan gap 0.05, with bi-directional mode switched off. This gave a really clear engraved photo, though on reflection I think we could probably have increased the power to 22 or 24 to make them a little darker. Perhaps we’ll do that for the next batch. One nice little trick we have learned is to tape the wood down to the laser bed using masking tape to keep it flat – simple, but effective!

Here are some of the results of yesterday’s cutting and engraving. In the first image you can see the pieces of the boxes we are cutting out for the sensory labels. The image does not do the actual items justice – they’re much nicer than this in real life!

Cutting out the box parts, and engraving the photos

Cutting out the box parts, and engraving the photos

Closeups of the sides and tops:

Top panels of box

Top panels of box

Sides of the box (holes for sound)

Sides of the box (holes for sound)

Here are couple of closeups of the engraved photos:

Holding a cup

Holding a cup

I like the one below as a concept – an engraving of Tim holding his engraved image. An engraving of an engraving.

Tim showing his engraved picture

Tim showing his engraved picture

We still have a batch of parts to cut and some more photos to engrave. Then there is the big task of assembling all of them and adding the electronics.

Posted in Uncategorized | Leave a comment

More Engravings for the Boxes using the Laser Cutter

A few of the original engravings didn’t turn out as well as we’d hoped, mostly because the line drawing were too thin or too light, so didn’t convert well to 1-bit images. We asked the group members to do the drawings again, but with a thicker pen/pencil and make them as large as possible on the paper.

The images were scanned at 300 dpi, converted to greyscale, thresholded to get the clearest 1-bit image and then saved as 1-bit bitmapped images. The size of the image was set to 15 cm x 11 cm, and the images inverted.

On the laser cutter, we set the speed to 200, power to 20 and scan gap to 0.05 for engraving. This was a bit experimental, but appeared to work well for the 3mm birch plywood. As you can see below, the resolution of the engraving is really good, and the images came out really well. They also feel good to touch, with clear outlines.

I have since learned that there is a simple method for calculating the correct scan gap, for a given dpi of image. It is:

DPI to Scan Gap = 25.4/DPI

For example, a 300 dpi image would then have a scan gap of 0.085 using this formula. I’ll be try a slightly lower dpi on the next engraving, and so reducing the scan gap and seeing how much different this makes to quality and speed!

All four new engravings

All four new engravings

Sams Shell

Sams Shell

Katy's Snake

Katy’s Snake

Ashley's Bird

Ashley’s Bird

Adalana's Ring

Adalana’s Ring

 

Posted in Uncategorized | Leave a comment

Prototype Sensory Boxes for the British Museum Collection

Each of our co-researchers from Tower Hamlets was given the task of drawing their favourite (or preferred) object from the enlightenment gallery at the British Museum. The drawing was to be kept simple, as we wanted to engrave each one onto wood and then use this engraving for the front, of what will eventually be, their sensory box. Each of the completed sensory boxes will eventually be placed alongside the real object in the enlightenment gallery for our (one day) exhibition in January. the process for engraving is described below.

Each of the images was first scanned and saved as a greyscale image. This is one of them (drawn by Ryan):

Ryan's scanned image

Ryan’s scanned image

The images were cropped to 15cm x 11cm and set at a resolution of 300 DPI, as we wanted them to be approximately the same size as a postcard. The images need to be converted to 1-bit bitmaps so that they are compatible with the laser cutter software. This was easy to do in photoshop: first change image mode to greyscale, then set the mode as bitmap. Then you can save the image as a 1-bit bitmap. We also inverted each of the images to get:

Ryan's picture inverted

Ryan’s picture inverted

The reason for doing this is that the laser cutter will remove the background and leave the sketched lines as a relief. We prefer this way of engraving as the result is much more tactile.

Here’s the machine which we used to engrave and cut out the pictures:

LaserScript LS3060 laser cutter and engraver

LaserScript LS3060 laser cutter and engraver

It’s a LaserScript LS3060 with a 60W tube. It’ll cut 8mm acrylic or plywood, possibly even 10mm. For the engravings (and the box which is decribed below), we used either 3mm birch or 3mm poplar plywood. The poplar is slightly softer wood so requires a lower power setting. However, we didn’t know this at the time, so the poplar engravings appear darker than those cut from birch.

The picture were merged into a single large bitmap which is approximately the same size as the cutting area of the laser cutter. This allowed us to engrave and cut a whole batch of images, rather than one at a time. It took about 1.5 hours to complete each set of engraving from a sheet of plywood, and the results are shown below:

Images engraved using birch plywood

Images engraved using birch plywood

The second set of engravings used poplar plywood, and as you can see they are darker:

Images engraved using poplar plywood

Images engraved using poplar plywood

We also created a very simple box which has the same length and width as the images so that an image can be attached to the front of the box. The one below has dimensions 11cm x 15cm x 3cm and is just about deep enough to include some simple electronics, including a speaker, MP3 player and battery:

Prototype box cut out using the laser cutter

Prototype box cut out using the laser cutter

When assembled, the box looks like this (this one has an engraved image attached to the top):

Prototype box with an image attached

Prototype box with an image attached

Posted in Uncategorized | 1 Comment