Skip to content

12. Skin Electronics

Research

describe what you see in this image

Working with more specific electronics that are an extension of the body was quite challenging and yet simple at the same time, as we worked with pre-made, ready-to-use elements such as patches.

But what are Skin Electronics and how do they differ from wearables? Although the two terms can be confused, Wearables can be understood as a category of electronic devices worn as accessories, embedded in clothing, and even tattooed on skin. Wearables incorporate microprocessors and internet connectivity. They have evolved from items such as eyeglasses and wristwatches to advanced devices such as fitness trackers and virtual reality headsets. Their purpose is to facilitate people's daily activities in any field, as well as to assist users in specific tasks.

On the other hand, skin electronics are ultra-thin, flexible, and stretchable devices that are placed on the skin like a tattoo or patch and can be considered an extension of the body to perform specific functions. They work as sensors or actuators, without wires or rigid structures. They are special because of the precision with which they are manufactured and their practicality when worn on the skin. These devices have gained momentum in recent years as they are usually very thin, yet soft and stretchable, like skin, so they do not interfere with movement and can also be powered wirelessly.

Another advantage of these innovations is that they are biocompatible for prolonged use and their application has reached various fields such as:

  • Medicine: For continuous non-invasive monitoring

  • Sports: To measure performance without wristbands or rigid sensors

  • Human-machine interfaces: To control devices with muscle gestures

  • Augmented reality: Displays on the skin

  • Biomedical research, etc.

weekly assignment

Check out the weekly assignment here or login to your NuEval progress and evaluation page.

about your images..delete the tip!!
  1. Remember to credit/reference all your images to their authors. Open source helps us create change faster together, but we all deserve recognition for what we make, design, think, develop.

  2. remember to resize and optimize all your images. You will run out of space and the more data, the more servers, the more cooling systems and energy wasted :) make a choice at every image :)

This image is optimised in size with resolution 72 and passed through tinypng for final optimisation. Remove tips when you don't need them anymore!

get inspired!

Check out and research alumni pages to betetr understand how to document and get inspired

References & Inspiration

As the main references for this assignment, I found devices that contributed to different areas such as human and environmental health, as well as more recreational, artistic, or innovative ways of creating, such as tattoos, which personally caught my attention.

One project that I found quite interesting and innovative was created by a team led by Jianliang Xiao of the university's Mechanical Engineering wing, the new e-skin makes use of a special polymer called a polyimine that's been doped with silver nanoparticles to improve mechanical strength, chemical stability, and electrical conductivity. The newly-developed thermoset has also been embedded with pressure, temperature, humidity, and air flow sensors.

By slightly heating the electronic skin, it can be shaped to comfortably fit the contours of a human limb or irregular surfaces like a robotic hand by applying a little pressure. But its operational lifespan can be extended by repairing damage, and it can be fully recycled. This is extremely important because it means that these and other devices can be renewed and recycled, avoiding waste.

The importance of these devices often lies in their function, and it is impressive to see how advances contribute to society with clear ideas that help people's health, such as this small patch capable of measuring three parameters at once, one from each sensor: blood pressure, glucose, and either lactate, alcohol, or caffeine. Theoretically, it can detect all of them at the same time, but that would require a different sensor design. The prototype is connected with wires, but researchers are already at work on a new version of the patch with more sensors, shrinking the electronics for the blood pressure sensor and with the goal of making it wireless.

Fabricademy Inspo

Inspiration

One of the projects I took as a reference and inspiration was a wearable device and apparel able to understand the context of each exercise, create personalized workout regimens, and coach you as you exercise—based on your schedule, abilities, and end goal—to maximize the results of each exercise, using a reactive AI-based coaching app. I believe that technology is advancing faster and faster, and we must think carefully about how to use it to benefit the community.

Tools

Process and workflow

NFC

Bassically a NFC tag or sticker means a small but powerful piece of technology designed to enable seamless wireless communication between devices over short distances. These tags are usually embedded in a chip form and can be found in various items, from stickers and cards to smartphones and other smart devices.

Components

First test Nail Sticker

For this first practice, I love Mar´s ideas about the Nial Sticker, i didnt´see him but i think it is really pretty, but for this cade, i wanted to use it as a real tatto.

Second attempt NFC Tools

For this first app i just wanted to linked it to my web site

Third attempt NFC tasks

Then I realized you can create tasks simultaneously and they can execute togheter, not in the same time.

Hair Motion Reactive

While looking for inspiration on how electronics can interact with the human body, I was really struck by the interplay between hair and lights. I think it’s a great idea for festival or event decorations. This time, I was interested in using sensors; personally, finding the right code with the correct connections has been a major challenge in terms of electronics during the fabrication process, so that’s why I decided to create an interaction with an LED that acts like hair—like a part of you.

PIR motion sensor

Passive infrared (PIR) sensors are devices used for motion detection. They are inexpensive, small, low-power, and easy to use. For this reason, they are frequently used in toys, home automation applications, and security systems. PIR sensors work by measuring infrared radiation. All objects (living or not) emit a certain amount of infrared energy, which increases as their temperature rises. PIR devices are equipped with a piezoelectric sensor capable of detecting this radiation and converting it into an electrical signal.

Sketch

Code

    int pirPin = D6;   // usa número, no D6
    int ledPin = D0;

    unsigned long tiempoEncendido = 5000;
    unsigned long ultimoMovimiento = 0;

    void setup() {
    pinMode(pirPin, INPUT);
    pinMode(ledPin, OUTPUT);
    Serial.begin(9600);
    }

    void loop() {
    int estadoPIR = digitalRead(pirPin);

    Serial.println(estadoPIR); // 👈 ahora sí verás datos

    if (estadoPIR == HIGH) {
        ultimoMovimiento = millis();
    }

    if (millis() - ultimoMovimiento < tiempoEncendido) {
        digitalWrite(ledPin, HIGH);
    } else {
        digitalWrite(ledPin, LOW);
    }

    delay(200);
    }

Testing code

Diseño de Monse Islas

Understanding how this sensor works was relatively easier than with others; I realized the importance of adjusting the TIME and SENS settings so that the sensor doesn’t stay in the HIGH state, causing the LED to remain on constantly and never turn off.

I also learned that there are two modes for this sensor, depending on the position of jumper H.

I also learned that there are two modes for this sensor, depending on the position of the H jumper, which helps detect movement as it passes by the sensor. For this project, I wanted it to have a gradual on/off effect rather than a sudden one, making it more interesting as more pieces are added. I would definitely like to experiment with more pieces and program them to turn on gradually.

Hair Motion Reactive

Diseño de Monse Islas