The Unreasonable Effectiveness Of Adhesive Tape

No doubt many of you have spent a happy Christmas tearing away layers of wrapping paper to expose some new gadget. But did you stop to spare a thought for the “sticky-back plastic” holding your precious gift paper together?

There are a crazy number of adhesive tapes available, and in this article I’d like to discuss a few of the ones I’ve found useful in my lab, and their sometimes surprising applications. I’d be interested in your own favorite tapes and adhesives too, so please comment below!

But first, I’d like to start with the tapes that I don’t use. Normal cellulose tape, while useful outside the lab, is less than ideally suited to most lab applications. The same goes for vinyl-based insulating tapes, which I find have a tendency to fall off leaving a messy sticky residue. When insulation is necessary, heatshrink seems to serve better.

The one tape I have in my lab which is similar to common cellulose tape however is Scotch Magic Tape. Scotch Magic tape, made from a cellulose acetate, and has a number of surprising properties. It’s often favored because of it’s matte finish. It can easily be written on and when taped to paper appears completely transparent. It’s also easy to tear/shape and remove. But for my purposes I’m more interested in it’s scientific applications.

Here’s a neat trick you can try at home. Take a roll of tape (I’ve tried this with Scotch Magic tape but other tapes may work too) to a dark room. Now start unrolling the tape and look at interface where the tape leaves the rest of the roll. You should see a dim blue illumination. The effect is quite striking and rather surprising. It’s called triboluminescence and has been observed since the 1950s in tapes and far earlier in other materials (even sugar when scraped in a dark room will apparently illuminate). The mechanism, however, is poorly understood.

It was perhaps this strange effect that led researchers to try unrolling tape in a vacuum. In 1953 a group of Russian researchers attempted this and bizarrely enough, were able to generate X-rays. Their results were unfortunately forgotten for many years, but were replicated in 2008 and even used to X-ray a researcher’s finger! As usual Ben Krasnow has an awesome video on the topic:

In my lab however I mostly use Scotch tape to remove surface layers. In certain experiments it’s valuable to have an atomically flat surface. Both Mica and HOPG (a kind of graphite) are composed of atomically flat layers. Scotch tape can be used to remove the upper layers leaving a clean flat surface for experimentation.

graphene
The mechanical exfoliation of Graphene

Researchers have also modified this technique to produce graphene. Graphene is composed of single carbon layers and has a number of amazing properties, highly conductive, incredibly strong, and transparent. For years producing small quantities of graphene provided difficult. But in 2004 a simple method was developed at the University of Manchester using nothing but bulk ordered graphite (HOPG) and a little Scotch tape. When repeatedly pressed between the Scotch tape, the Graphite layers can be separated until eventually only a signal layer of graphene remains.

kaptonmasking
Using Kapton to maskout traces via Dangerous Prototypes

 

 

The other non-conductive tape I use regularly in my lab is of course Kapton tape. While Kapton is a Dupoint brand name, it’s basically a polyimide film tape which is thermally stable up to 400 degrees C. This makes it ideal for work holding in electronics (or masking out pins) when soldering. You can also use it for insulating (though it’s inadvisable for production applications). Typically polyimide tape is available under a number of dubious synonyms (one example is Kaptan) from a variety of Chinese suppliers at low cost.

 

Carbon tape is conductive in all axes. This means it you can create a electrical connection by simply taping to your devices. It’s resistance however is somewhat high. I’ve most commonly come across this when using electron microscopes. Carbon tape is used both to keep a sample in place and create an electrical connection between the sample and the sample mount.

carbon_tape
Carbon tape, applied to a SEM mount.

Other conducting tapes are available with lower resistance, creating a electrical connection without soldering is valuable in a number of situations. Particularly when heat might damage the device. One example of this is piezoelectric materials. Not only does solder often bond poorly to ceramic materials, but it may also depole the material removing its piezoelectric properties. I tend to use conductive epoxies in these situations, but conductive tapes appear to be an attractive option.

Aluminum tape is commonly used for (heat) insulation in homes. It’s therefore very cheap and easily available. As well as conducting heat aluminum tape of course also conducts electricity. Around the lab this can be pretty handy. While the adhesive is not conductive, making it less attractive for connection parts, I’ve found aluminum tape great of sealing up holes in shielded enclosures. It also makes a great accompaniment to aluminum foil which is used to provide ad-hoc shielding in many scientific environments. Copper tape is also easily obtained, though slightly more expensive.

ztape
Z tape under a microscope

A much less common, but far cooler conductive tape is so called Z tape. This tape is composed of regular double-sided tape impregnated with spaced conductors. The result is a tape that conducts in only one direction (from the top to the bottom). This makes it similar in structure to a zebra strip, commonly used to connect LCDs. Z tape is unfortunately pretty expensive, a short 100mm strip can cost 5 dollars. What exactly 3M had in mind when creating Z tape is unclear. But it can be used for repairing FPC connectors on LCDs or in other situations where soldering is impractical.

One of the more awesome applications is Jie and Bunnie’s circuit sticker project. The kits are designed to allow kids to assemble circuits simply by sticking components together. Z tape is ideal for this, as it allows multiple connections to be made using the same piece to tape.

I couldn’t write an article on tape without mentioning the somewhat apocryphal “Invisible Electrostatic Wall” incident. A report at the 17th Annual EOS/ESD Symposium describes a “force field” like wall that appeared during the production of polypropylene film. While the story seems slightly dubious, it reminds us of the surprising applications and utility of tapes.

Next time you’re sending off a package or ripping open a package, spare a thought for the humble tape that holds it together.

Source: Flibble CC-BY-SA 3.0 https://commons.wikimedia.org/wiki/File:Acorn-ARM-Evaluation-System.jpg

Reverse Engineering The IPhone’s Ancestor

By all accounts, the ARM architecture should be a forgotten footnote in the history of computing. What began as a custom coprocessor for a computer developed for the BBC could have easily found the same fate as National Semiconductor’s NS32000 series, HP’s PA-RISC series, or Intel’s iAPX series of microprocessors. Despite these humble beginnings, the first ARM processor has found its way into nearly every cell phone on the planet, as well as tablets, set-top boxes, and routers. What made the first ARM processor special? [Ken Shirriff] potsed a bit on the ancestor to the iPhone.

The first ARM processor was inspired by a few research papers at Berkeley and Stanford on Reduced Instruction Set Computing, or RISC. Unlike the Intel 80386 that came out the same year as the ARM1, the ARM would only have a tenth of the number of transistors, used one-twentieth of the power, and only use a handful of instructions. The idea was using a smaller number of instructions would lead to a faster overall processor.

This doesn’t mean that there still isn’t interesting hardware on the first ARM processor; for that you only need to look at this ARM visualization. In terms of silicon area, the largest parts of the ARM1 are the register file and the barrel shifter, each of which have two very important functions in this CPU.

The first ARM chip makes heavy use of registers – all 25 of them, holding 32 bits each. Each bit in a single register consists of two read transistors, one write transistor, and two inverters. This memory cell is repeated 32 times vertically and 25 times horizontally.

The next-largest component of the ARM1 is the barrel shifter. This is just a device that allows binary arguments to be shifted to the left and right, or rotated any amount, up to 31 bits. This barrel shifter is constructed from a 32 by 32 grid of transistors. The gates of these transistors are connected by diagonal control lines, and by activating the right transistor, any argument can be shifted or rotated.

In modern terms, the ARM1 is a fantastically simple chip. For one reason or another, though, this chip would become the grandparent of billions of devices manufactured this year.

32C3: Vector Video Games

There are a few classic video games that rely on vector graphics and special monitors. Asteroids is incomplete if you’re not playing it in its original arcade format. The same goes with Tempest, Lunar Lander, and the 1983 Star Wars arcade game. Emulation of these games is possible, even with MAME, but the display – like every display you can buy today – is still rasterized. The solution to this problem is to create a vector display output for MAME that works in conjunction with adapter boards and DACs connected to a monitor.

For this year’s Chaos Computer Congress, that’s exactly what [Trammell Hudson] and [Adelle Lin] did. They’ve created an open source vector gaming system that connects MAME to XY monitors and oscilloscopes.

The build uses a custom board equipped with a Teensy 3.1 microcontroller and a 12-bit DAC to convert XY coordinates sent by MAME to vectors that can be displayed on any XY monitor. This, of course, requires a patch to MAME, which the maintainers rejected as being an, “unacceptably hacky way to achieve the intended result.” It does achieve the intended result, though: allowing dozens of vector games playable on whatever monitor supports vector graphics.

So far, [Trammell] and [Adelle] have gotten their system working on Vectrex consoles, analog oscilloscopes set to XY mode, and vectorscopes that litter every broadcast station and surplus shop. Check out [Trammell] and [Adelle]’s talk, and if you want to build the V.st vector display driver, the board is available from OSHPark.

Giving The C64 A WiFi Modem

If there’s any indication of the Commodore 64’s longevity, it’s the number of peripherals and add-ons that are still being designed and built. Right now, you can add an SD card to a C64, a technology that was introduced sixteen years after the release of the Commodore 64. Thanks to [Leif Bloomquist], you can also add WiFi to the most cherished of the home computers.

[Leif]’s WiFi modem for the C64 is made of two major components. The first is a Microview OLED display that allows the user to add SSIDs, passwords, and configure the network over USB. The second large module is the a Roving Networks ‘WiFly’ adapter. It’s a WiFi adapter that uses the familiar Xbee pinout, making this not just a WiFi adapter for the C64, but an adapter for just about every wireless networking protocol out there.

[Leif] introduced this WiFi modem for the C64 at the World of Commodore earlier this month in Toronto. There, it garnered a lot of attention from the Commodore aficionados and one was able to do a video review of the hardware. You can check out [Alterus] loading up a BBS over Wifi in the video below.

Continue reading “Giving The C64 A WiFi Modem”

First Edition Of German Computer Mag Is A Blast From The Past

Every once in a while we get nostalgic for the old days of computing. Here, we’re getting nostalgic for a past that wasn’t even our own, but will probably bring a smile to all the German hackers out there. c’t magazine has its first issue available on their website (PDF, via FTP), and it’s worth checking out even if you can’t read a word of German.

ct-adIt’s dated November/December 1983, and you’re definitely hopping in the WABAC machine here. The cover image is a terminal computer project that you’re encouraged to build for yourself, and the magazine is filled with those characteristic early-computer-era ads, many of them for the physical keyboards that you’d need to make such a device. Later on, c’t would provide plans for a complete DIY PC with plotter, one of which we saw still running at the 2015 Berlin Vintage Computer Festival.

The issue is chock-full of code for you to type out into your own computer at home. If you didn’t have a computer, there are of course reviews of all of the popular models of the day; the TRS-80 Model 100 gets good marks. And if you need to buy a BASIC interpreter, there’s an article comparing Microsoft’s MBASIC with CBM’s CBASIC. A battle royale!

ct_mag_computer_bandOther hot topics include modifications to make your ZX81’s video output sharper, the hassle of having to insert a coded dongle into your computer to run some software (an early anti-piracy method), and even a computer-music band that had (at least) a Commodore 64 and a CBM machine in their groovy arsenal.

It’s no secret that we like old computers, and their associated magazines. Whether you prefer your PDP-11’s physical or virtual, we’ve got you covered here. And if your nostalgia leans more Anglophone, check out this Byte magazine cover re-shoot.

Rubber Tanks And Sonic Trucks: The Ghost Army Of World War II

Winston Churchill once told Joseph Stalin “In wartime, truth is so precious that she should always be attended by a bodyguard of lies”. During World War II, the power of these bodyguards, in the form of military deception, became strikingly apparent. The German military was the most technologically advanced force ever encountered. The Germans were the first to use jet-powered aircraft on the battlefield. They created the enigma machine, which proved to be an extremely difficult system to break. How could the Allies possibly fool them? The answer was a mix of technology and some incredibly talented soldiers.

The men were the 23rd Headquarters Special Troops, better known as the Ghost Army. This unit was the first of its kind specifically created to deceive the enemy. Through multiple operations, they did exactly that. These 1100 soldiers created a diversion that drew German attention and gunfire to them, instead of the thousands of Allied troops they were impersonating.

The Ghost Army consisted of 4 distinct groups:

  • The 406th Engineer Combat Company Special were 166 “regular” soldiers – these men handled security, construction, and demolition.
  • 603rd Camouflage Engineers were the largest group at 379. As the name implies, the 603rd was created to engineer camouflage. 
  • 3132 Signal Service Company consisted of 145 men in charge of half-tracks loaded down with massive 500 watt speakers which could be heard for 15 miles. 
  • The Signal Company Special Formerly the 244th signal company, The 296 men of the Signal Company Special handled spoof radio communications.  The Germans heavily relied on captured and decoded radio messages to determine the Allies’ next move.

Continue reading “Rubber Tanks And Sonic Trucks: The Ghost Army Of World War II”

Better Networking With A Macintosh Classic

While it may not be the case anymore, if you compare a Mac and a PC from 1990, the Mac comes out far ahead. PCs suffered with DOS, while the Mac enjoyed real, non-bitmapped fonts. Where a Windows PC required LANMAN to connect to a network, the Mac had networking built right into every single machine. In fact, any Mac from The Old Days can use this built-in networking to connect to the Internet, but most old Mac networking hacks have relied on PPP or other network to serial conversion. [Pierre] thought there was an incomplete understanding in getting old Macs up on the Internet and decided to connect a Mac Classic to the Internet with Apple’s built-in networking.

Since the very first Macintosh, Apple included a simple networking protocol that allowed users to share hard drives, folders, and printers over a local network. This networking setup was called LocalTalk. It wasn’t meant for internets or very large networks; the connection between computers was basically daisy chained serial cables and later RJ-11 (telephone) cables.

LocalTalk stuck around for a long time, and even now if you need to do anything with a Mac made in the last century, it’s your best bet for file transfer. Because of LocalTalk’s longevity, routers and LocalTalk to Ethernet adapters can be found fairly easily. The only problem is finding a modern device that speaks both TCP/IP and LocalTalk. You can’t use a new Mac for this; LocalTalk has been gone from OS X since Snow Leopard. You can do it with a Raspberry Pi, though.

With a little bit of futzing about with MacTCP and a few other pieces of software from 1993 or thereabouts, [Pierre] can even get his old Mac Classic online. Of course the browsers are all horribly outdated (making the Hackaday retro edition very useful), but [Pierre] was able to load up rotten.com. It takes a while with an 8MHz CPU and 4MB of RAM, but it does get the job done.

You can check out [Pierre]’s demo video below.

Continue reading “Better Networking With A Macintosh Classic”