Drawn-on-Skin Conductive Ink Electrodes Replace Traditional Sensors: Washable, Customizable Designs Enable Long-Term ECG, EMG, and EEG Monitoring
Wearable medical sensors have traditionally appeared as dull adhesive patches with wires and rigid contacts, often leading to discomfort and unreliable readings during movement. Now, researchers have introduced a revolutionary alternative: conductive ink electrodes that can be painted directly onto the skin in the form of a fox, a favorite character, an intricate pattern, or nearly invisible lines.
The water-based formulation is applied with a brush and initially feels like glue while wet. Within approximately ten minutes it transforms into a thin, flexible conductive layer; drying can be accelerated with a regular hair dryer. The material starts almost transparent, but food coloring can be added to create electrodes of any desired color that blend seamlessly into decorative artwork.
How the Technology Works
Any biosignal acquisition system begins with skin-electrode contact. The heart, muscles, and brain generate weak electrical impulses that are captured on the body surface and processed into an electrocardiogram (ECG), electromyogram (EMG), or electroencephalogram (EEG). Signal quality depends directly on how tightly the electrode adheres to the skin.
Conventional rigid metal sensors conduct electricity well but struggle with skin stretching, sweating, and motion, causing contact loss and distorted data. Hydrogel-based alternatives conform better yet dry out, lose elasticity, and peel away over time. Factory-made sensors also leave microscopic air gaps between their flat surface and the skin’s natural irregularities, worsened by hair and perspiration.
The new liquid ink fills these irregularities immediately upon application, enveloping hairs and penetrating crevices. After drying, it preserves the skin’s topography, ensuring stable electrical contact across the entire painted area and delivering more accurate measurements.
Composition and Application
The ink consists of several polymers and acidic additives dissolved in water. The polymers provide flexibility, skin adhesion, and conductivity after drying, allowing the layer to stretch with the body without cracking. Because paint alone cannot connect to external equipment, part of each electrode is applied over porous silver fabric placed on the skin; the wet ink penetrates the fibers and bonds the textile to the painted pathway.
The free edge of the fabric links to a small reusable electronic module worn under clothing. This module receives signals from the electrodes and transmits them via Bluetooth. Expensive electronics remain reusable while the skin-contact layer can be washed off and reapplied as needed.
The silver fabric’s porous structure permits moisture escape, reduces sweat accumulation that could cause irritation, and withstands stretching beyond 150 % of its original length without tearing.
Testing and Performance
In one experiment, painted electrodes recorded an electrocardiogram for 12 hours during normal daily activities, maintaining contact while the participant walked, sat, and performed routine movements. Separate tests during physical exercise confirmed that the electrodes resisted sweat, preserved connectivity, and continued delivering clear signals. Researchers note that 12 hours was an observational limit rather than a material failure point.
Additional trials showed the ink works beyond medical diagnostics: sensors captured forearm muscle contractions and transmitted commands to a robotic prosthetic hand, allowing the user to control the mechanical device through muscle tension alone.
Future Applications and Outlook
The team envisions uses in pediatrics, where colorful drawings of animals or characters may reduce children’s anxiety compared with traditional wired patches. Neurointerface development could benefit from easier electrode placement on the scalp, while future chemical sensors might detect biomarkers such as cortisol and glucose in sweat. The technology may even extend to plants, turning leaves and stems into environmental data sources.
A preliminary patent application has been filed, and the work appears in Proceedings of the National Academy of Sciences. By combining precision, comfort, and simplicity, the painted electrodes eliminate the need for individualized fabrication while allowing the same reusable electronics module to be paired with fresh designs whenever required.
Related articles
OAuth Authorization Server Built Without Storing User Profiles
The article details the evolution of an OAuth Authorization Server that deliberately avoids storing user profiles, relying instead on external identity providers for authentication. It addresses three core constraints: hundreds of dynamically created isolated APIs, a public SPA client without a BFF, and the inability of resources to query the AS on every request. The design separates concerns so the AS handles only clients, tenants, grants, audiences, scopes, keys, sessions, and token issuance while the Main API owns profiles and roles. Tokens are managed securely inside a Service Worker using a custom FedCM grant, eliminating races across tabs and reducing XSS exposure. The approach minimizes blast radius, simplifies compliance, and keeps the AS replaceable without affecting product domain logic.
Why a 202-Character License Key Uses ECDSA P-256 Instead of Ed25519 or RSA
A developer building offline license verification for a .NET desktop application evaluated Ed25519, RSA, and ECDSA P-256 before selecting the last option. The decision was driven by the requirement for zero external dependencies, keys short enough for manual entry from email, and support for key rotation without breaking existing licenses. Although Ed25519 offers faster verification and a smaller public key, it is absent from System.Security.Cryptography in both .NET 8 and .NET 10, with API approval only targeted for version 11. RSA-2048 produces signatures too long for practical use, resulting in a 571-character Base32 string that users would find cumbersome. ECDSA P-256 with SHA-256 delivers a fixed 64-byte signature that becomes a manageable 202-character key when encoded in Base32, while remaining fully available in the runtime. The article also covers performance measurements, the risks of ECDSA nonce generation, and the deliberate choice of the IEEE P1363 signature format to guarantee fixed-length output.
Pilcrow Publishes Free Comprehensive Guide on Web Authentication
Author Pilcrow has released a detailed, ad-free handbook covering authentication and authorization practices for web applications. The resource draws on personal experience and includes practical examples in JavaScript and Go. It examines password-based methods, email verification, multi-factor authentication, passwordless flows, and passkeys while highlighting associated risks and usability trade-offs. The book also provides in-depth guidance on session management, token security, expiration policies, and email address handling as account identifiers. Recommendations emphasize choosing methods that match application security requirements and user expectations. Additional context is given on OWASP resources and community support channels.
redb 3.4.0 Adds Replay Checkpoints, Shared Runtime Layer and Declarative Secrets Handling for .NET Ecosystem
redb 3.4.0 delivers operational improvements for the .NET integration platform that includes typed storage over Postgres, MSSQL and SQLite, the redb.Route engine modeled after Apache Camel, the Tsak runtime with dashboard and clustering, and redb.Identity for OIDC and OAuth 2.1. The release focuses on post-deployment resilience with replay checkpoints that capture message state at named points inside routes, allowing safe re-execution of downstream steps without duplicating side effects. A shared runtime layer moves framework assemblies into a separate Libs/shared directory so that individual DLLs can be replaced without rebuilding or redeploying the entire Tsak or Identity packages. Secrets are now declared with a [Sensitive] attribute on endpoint options, ensuring URIs containing passwords or keys are sanitized before they reach logs, metrics or health checks. Additional controls include role-based access to management APIs, persistent audit trails and cryptographic signing of dynamically loaded modules. All Pro features remain free on the entire 3.x line with no licensing server required.