|
Arduino Nano R3 |
x 1 | |
![]() |
DFR0464DFRobot
|
x 1 | |
|
l293d Motor Driver IC |
x 1 | |
|
Linear Regulator (7805) |
x 1 | |
|
Rotary potentiometer (generic) |
x 1 | |
|
Resistor 1k ohm |
x 1 | |
|
Resistor 221 ohm |
x 1 |
![]() |
arduino IDEArduino
|
|
![]() |
Soldering Iron Kit |
DIY Advanced Arduino Colloidal Silver Generator
A colloidal silver generator is a device used to produce suspension of tiny silver particles in a liquid, typically water. Colloidal silver is believed by some to have antibacterial, antiviral, and antifungal properties. The basic principle behind a colloidal silver generator is electrolysis. The generator consists of two electrodes, usually made of pure silver, immersed in distilled water. When an electric current is passed through the electrodes, silver ions are released into the water, creating a colloidal suspension of silver particles. In one of my previous videos you can see the basic features it should have such a device, as well as the simplest way to make it yourself.
This time I will describe how to make an advanced colloidal silver device with Arduino, which has all the features of such commercial devices. The device has a PWM based variable current limiter, automatic polarity reversal of the electrodes, as well as a timer that turns off the device when the desired ppm concentration of the solution is reached. Unlike the previous device mentioned earlier in the text, to make this device you need some knowledge of electronics and microcontrollers.
The device is relatively easy to build, and consists of several components:
- Arduino Nano microcontroller
- 16x2 LCD Display
- l293d motor driver IC
- 7805 Voltage stabilizer
- A Potentiometer
- 19V power supply from old Laptop computer
- Aquarium air pump
- And two silver electrodes
If you want to make a PCB for this project, or for any other electronic project, PCBway is a great choice for you. PCBway is one of the most experienced PCB manufacturing company in China in field of PCB prototype and fabrication. They provide completed PCB assembly service with worldwide free shipping , and ISO9001 quality control system. Also, on their site there is an online gerber viewer where you can upload your gerber and drill files to render your board.
Now let's see how the device works in real conditions:
First, we need to fill the glass container with distilled water, which has a ppm concentration close to zero. Then we connect the electrodes and start the device. Some basic information appears on the LCD display
- The current flowing in the circuit in milliamps
- The polarity of the electrodes
- And the elapsed time since the device was turned on
The current can be changed continuously in the range from 0 to 10mA, using the potentiometer located on the back of the device.
At a higher current, the time to reach a certain ppm concentration is shorter, but it is still recommended to use a lower current.
Тhe interval for changing the polarity of the electrodes can be set in the code, and in this particular case it is 30 minutes.
The duration of the operation of the device is(also) defined in the (code) line
if (hours>=3){
and for this amount of water, at a current of 5 milliamperes, three hours are needed to obtain the desired concentration of the solution.
Now we can check the current in the circuit using an Ammeter. As can be seen on the instrument, the value of the current in the circuit is the same as the one shown on the display, which means that the connection is OK, and the electrolysis (actually the silvering of the water) has begun.
As you can see on the screen, after 30 minutes the polarity of the electrodes changes automatically, and this can also be seen on the ammeter, where the current now has a negative sign.
Next, after two hours from the start of the operation of the circuit, I will measure the ppm value with the help of this TDS meter, which is otherwise mostly used to check the quality of water in aquariums. We see that currently the value is 17.7ppm, which means that some more time should pass to get the desired value of around 20ppm.
This testing is done only once at the beginning, and then we know how long it takes to get a certain concentration of silver particles in the water. The concentration of commercial colloidal silver products usually ranges from 10 to 30 ppm.
When the process is complete, the END character appears in the lower right of the screen, and the current in the circuit stops.
And finally, one note:
Colloidal silver should not be ingested in large quantities or used as a substitute for medically approved treatments. If you are considering using colloidal silver for health-related purposes, it is crucial to consult a qualified healthcare professional to ensure safety and efficacy.
The device is installed in a suitable box made of PVC material with a thickness of 3 and 5 millimeters, and covered with self-adhesive colored wallpaper.
// Arduino DC motor speed and direct control #include <LiquidCrystal.h> LiquidCrystal lcd(12, 9, 5, 4, 3, 2); #define pot 0 #define pwm1 10 #define pwm2 11 boolean direct = 0; int current; int Shutdown=0; int mA = 0; int hours; int minutes; int seconds; long hour = 3600000; // 3600000 milliseconds in an hour long minute = 60000; // 60000 milliseconds in a minute long second = 1000; // 1000 milliseconds in a second void setup() { lcd.begin(16, 2); pinMode(pwm1, OUTPUT); pinMode(pwm2, OUTPUT); } void loop() { lcd.clear(); lcd.setCursor(0,0); lcd.print("Coloidal I=mA "); lcd.print(mA); long timeNow = millis(); hours = (timeNow) / hour; minutes = ((timeNow) % hour) / minute ; seconds = (((timeNow) % hour) % minute) / second; lcd.setCursor(0, 1); lcd.print("T:"); lcd.print(hours); lcd.print(":"); lcd.print(minutes); lcd.print(":"); lcd.print(seconds); current = analogRead(pot) / 4; mA=map(current, 0,255,0,10); if(direct) analogWrite(pwm1, current); else analogWrite(pwm2, current); direct=!direct; if(minutes>=0 && minutes<30){ digitalWrite(pwm1, 0); lcd.setCursor(10,1); lcd.print("P:+/-"); } if( minutes>=30 && minutes<59){ digitalWrite(pwm2, 0); lcd.setCursor(10,1); lcd.print("P:-/+"); } if(hours>=3){ digitalWrite(pwm1, 0); digitalWrite(pwm2, 0); lcd.setCursor(10,1); lcd.print("END"); } delay(100); }

DIY Advanced Arduino Colloidal Silver Generator

Raspberry Pi 5 7 Inch Touch Screen IPS 1024x600 HD LCD HDMI-compatible Display for RPI 4B 3B+ OPI 5 AIDA64 PC Secondary Screen(Without Speaker)
BUY NOW
ESP32-S3 4.3inch Capacitive Touch Display Development Board, 800×480, 5-point Touch, 32-bit LX7 Dual-core Processor
BUY NOW
Raspberry Pi 5 7 Inch Touch Screen IPS 1024x600 HD LCD HDMI-compatible Display for RPI 4B 3B+ OPI 5 AIDA64 PC Secondary Screen(Without Speaker)
BUY NOW- Comments(1)
- Likes(0)

- EngineerJan 14,20240 CommentsReply
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by Mirko Pavleski
-
Review and Comparison of Three Inexpensive Metal Detector Kits A metal detector is a device used to detect the presence of metal objects in the ground or other ma...
-
How to make simple Arduino RGB Led strip VU Meter VU meter or volume unit meter is a device intended for visual presentation of the audio signal. It ...
-
DIY Simple Antistress and Relaxation PEMF Device based on Schumannn resonance frequency 7.83 Hz Schumann resonances are global electromagnetic resonances, generated by lightning discharges in the...
-
DIY Si4825 A10 multiband Radio (MW,SW,FM) Thanks to the production of specialized radio chips, nowadays it is possible to make a quality mult...
-
DIY simple HUNTER Led Game with Arduino Some time ago I presented you a simple to make, but interesting game, a 1D version simulation of "P...
-
XHDATA D-109WB Radio Short Review with complete disassembly Recently I received a shipment of a radio from the brand XHDATA model: D-109WB, so I immediately de...
-
Arduino 3D Printed self Balancing Cube Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
-
ESP32 Analog style VU meter with GC9A01 Round Dispalys + Peak Meters A typical VU meter measures audio signals and displays them with a visual indicator. In the classic...
-
Arduino two weel self Balancing Robot Self Balancing Robot is device that can balance itself from falling to the ground. Its function is ...
-
ELECROW CrowPanel ESP32 4.2” E-paper Wi-Fi Info-Dispaly Project An e-paper display (also known as an electronic paper display or E Ink display) is a type of screen...
-
ESP32 Fluid simulation on 16x16 Led Matrix Fluid simulation is a way of replicating the movement and behavior of liquids and gases in differen...
-
Simple GU50 VTTC Tesla Coil with MOT (25+cm Spark) Vacuum Tube Tesla Coils are a common choice for homebuilders for several practical reasons. At Soli...
-
Hourglass ESP8266 Code A hourglass, also known as an sand clock, is a device used to measure the passage of time. It consi...
-
Tug of War Arduino Game on WS2812 Led strip A Tug of War is a classic team-based game where two opposing teams compete to pull a rope in opposi...
-
DIY ESP32 Bioresonance Rife Machine with ZAPPER function Rife machine therapy is an alternative treatment developed by Dr. Royal Raymond Rife in the 1930s. H...
-
Arduino VFO Project with a Large LCD Display A Variable Frequency Oscillator (VFO) is an electronic oscillator whose output frequency can be adj...
-
Exploring the Tesla Coil Driver Board, Full Review & Test Results Some time ago I presented you a video in which I analyzed a super cheap Tesla Coil driver that cost...
-
Arduino Eatrthquake alarm and protection system with D7S seismic Sensor Earthquakes are extremely common events around the world. On average, there are fifty earthquakes a...
-
Review and Comparison of Three Inexpensive Metal Detector Kits A metal detector is a device used to detect the presence of metal objects in the ground or other ma...
-
How to make simple Arduino RGB Led strip VU Meter VU meter or volume unit meter is a device intended for visual presentation of the audio signal. It ...
-
DIY Simple Antistress and Relaxation PEMF Device based on Schumannn resonance frequency 7.83 Hz Schumann resonances are global electromagnetic resonances, generated by lightning discharges in the...
-
DIY Si4825 A10 multiband Radio (MW,SW,FM) Thanks to the production of specialized radio chips, nowadays it is possible to make a quality mult...
-
DIY simple HUNTER Led Game with Arduino Some time ago I presented you a simple to make, but interesting game, a 1D version simulation of "P...
-
XHDATA D-109WB Radio Short Review with complete disassembly Recently I received a shipment of a radio from the brand XHDATA model: D-109WB, so I immediately de...
-
Arduino 3D Printed self Balancing Cube Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
-
ESP32 Analog style VU meter with GC9A01 Round Dispalys + Peak Meters A typical VU meter measures audio signals and displays them with a visual indicator. In the classic...
-
Arduino two weel self Balancing Robot Self Balancing Robot is device that can balance itself from falling to the ground. Its function is ...
-
ELECROW CrowPanel ESP32 4.2” E-paper Wi-Fi Info-Dispaly Project An e-paper display (also known as an electronic paper display or E Ink display) is a type of screen...
-
ESP32 Fluid simulation on 16x16 Led Matrix Fluid simulation is a way of replicating the movement and behavior of liquids and gases in differen...
-
Simple GU50 VTTC Tesla Coil with MOT (25+cm Spark) Vacuum Tube Tesla Coils are a common choice for homebuilders for several practical reasons. At Soli...
-
Modifying a Hotplate to a Reflow Solder Station
177 0 2 -
MPL3115A2 Barometric Pressure, Altitude, and Temperature Sensor
136 0 1 -
-
Nintendo 64DD Replacement Shell
184 0 1 -
V2 Commodore AMIGA USB-C Power Sink Delivery High Efficiency Supply Triple Output 5V ±12V OLED display ATARI compatible shark 100W
385 4 1 -
How to measure weight with Load Cell and HX711
424 0 3 -
-
Instrumentation Input, high impedance with 16 bit 1MSPS ADC for SPI
531 0 0