![]() |
arduino IDEArduino
|
|
![]() |
Soldering Iron Kit |
Universal Arduino Staccato controller for SSTC and VTCC Tesla Coils
The VTTC Staccato Controller was developed in the attempt to create longer sparks from VTTCs while at the same time reducing the input power. The Staccato Controller achieves this by operating the VTTC for a full AC half cycle, then disabling the VTTC for a selectable number of AC half cycles. Basically the controller consists of an oscillator with adjustable parameters and a triac or thyristor at the output of the oscillator, which is connected between the cathode of the vacuum tube and ground.
In the device that I will present to you in this video, an Arduino Nano board is used to build the oscillator, so the device is very simple to build, and yet has many control options. The presented code is very simple and understandable, so if we have some experience in programming, we can expand these possibilities. The original project was taken from teslamuuntaja's blog and I added a two-transistor part so now Mosfet SSTC can also be controlled.
. The device is composed of several parts:
- Arduino Nano MCU board
- Three control potentiometers
- Mains transformer with 12V output
- Gretz junction with filter capacitor and voltage stabilizer
- Triac through which VTTC is controlled
- Two transistors for control of SSTC
- and some diodes and resistors
This project is sponsored by PCBWay. They has all the services you need to create your project at the best price, whether is a scool project, or complex professional project. On PCBWay you can share your experiences, or get inspiration for your next project. They also provide completed Surface mount SMT PCB assemblY service at a best price, and ISO9001 quality control. Visit www.pcbway.com for more services
Now let's briefly explain the working principle. There is a full-wave rectifier on the secondary of the mains transformer, in the continuation of which there is a filter electrolytic capacitor and a voltage stabilizer for 12V. This voltage is used to power the Arduino board. Between the transformer and the rectifier bridge, a half-wave rectified current is taken via a diode to a voltage divider, consisting of two 1 kΩ resistors. After the voltage divider, there is a 100 nF capacitor for filtering, followed by a 4.7-volt Zener diode to limit the voltage to Arduino's maximum of 5 volts. The resulting half-wave rectified and 4.7-volt limited voltage is fed into Arduino's analog input A1. Using this signal, Arduino controls the triac and two tyransistor circuit part, which is triggered from Arduino's output D12 through a 220 Ω resistor.
To Arduino analog inputs A2, A3, and A4 are connected three potentiometers that regulate the interval, length and intensity of the generated signal. A button is connected to the D2 pin with pull up resistor. By using the push button, a single trigger can be given. If potentiometer R2 is adjusted to a point where the device does not provide pulses, the push button can be used to give one pulse at a time. LED diode flashes in sync with the triac trigger pulses.
On the back of the device there are two terminals to which the appropriate type of Tesla transformer should be connected, previously selected with the switch. The negative pole in both cases need to be connected to the ground, and the positive pole on VTTC is connected to the cathode of the vacuum tube, while in the SSTC to the Gate of the Mosfet or to the input of the Mosfet driver.
We can best capture the way the device works with the help of an oscilloscope. For this purpose, we connect one channel of the oscilloscope to pin A1, which is the input, and the other channel to the output pin D12. The oscilloscope provides a clear visual demonstration of how all adjustment works. In the oscilloscope image, you can see the half-waves of the mains current in yellow and the triggering pulses of the triac in blue.
- "INTERVAL" Potentiometer is used to adjust how often the triac is triggered. When the potentiometer is turned towards one end, the triac is triggered on every half-wave. Near the other end, it's triggered every 50 half-waves, which corresponds to once per second on a 50 Hz power grid.
- "LENGHT" Potentiometer is used to adjust how many consecutive half-waves the triac is triggered. The values range from 1 to 25. The oscilloscope images provide a visual representation of this.
- "INTENSITY" Potentiometer is used to adjust the timing of the trigger. This allows for adjusting the intensity of the spark discharge. The most intense discharge occurs when the trigger is given right at the beginning of the half-wave. By adjusting the potentiometer, the trigger timing can be delayed.
And finally, a short conclusion. There are several circuit diagrams for making a staccato controller, but this is probably the simplest way thanks to the use of a microcontroller. Despite its simplicity, the device is incredibly customizable, and with small changes to the code we can achieve a variety of effects.
At the begining of the video you can see this device in operation both at VTTC and at SSTC. The entire assembly is mounted in a suitable case made of PVC board with a thickness of 5 mm and covered with colored self-adhesive wallpaper.
// Staccato controller for Vacuum Tube Tesla Coil (VTTC) // Ver 1 // 1.9.2023 - Kaj Luukko const int pinAC = A1; // 50 Hz half wave input pin A1 const int potInterval = A2; // Potentiometer for intervall pin A2 const int potLenght = A3; // Potentiometer for lenght pin A3 const int potDelay = A4; // Potentiometer for delay pin A4 const int outPinTriac = 12; // Digital out pin 12 for triac const int outPinLED = 13; // Digital out pin 13 for LED const int inButton = 2; // Push button input digital pin 2 int i = 0; void setup() { pinMode(pinAC, INPUT); pinMode(potInterval, INPUT); pinMode(outPinTriac, OUTPUT); pinMode(outPinLED, OUTPUT); pinMode(inButton, INPUT); digitalWrite(outPinTriac, LOW); digitalWrite(outPinLED, LOW); } void loop() { while (analogRead(pinAC) < 15){} if (digitalRead(inButton) == HIGH) { fire(); while (digitalRead(inButton) == HIGH) {} } i = i + 1; if ((i >= map(analogRead(potInterval),0,1020,50,0)) && (analogRead(potInterval) > 10)){ fire(); i = 0; } if (i > 0){ while (analogRead(pinAC)>15){} } } void fire() { for (int ii=0; ii<map(analogRead(potLenght),0,1020,25,1); ii++) { delayMicroseconds(map(analogRead(potDelay),0,1020,0,9000)); digitalWrite(outPinTriac, HIGH); digitalWrite(outPinLED, HIGH); delay(1); digitalWrite(outPinTriac, LOW); while (analogRead(pinAC) > 15){} digitalWrite(outPinLED, LOW); while (analogRead(pinAC) < 15){} } }

Universal Arduino Staccato controller for SSTC and VTCC Tesla Coils

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(0)
- Likes(2)

-
Engineer Aug 11,2024
-
Andre Almeida Pinto Mar 31,2024
- 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
-
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...
-
Arduino 3D Printed self Balancing Cube Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
-
Arduino flame detector with alarms and automatic fire extinguishing A flame detector is an electronic device designed to sense the presence of flames or fire. There ar...
-
OpenWebRX - Simplest Rasprberry Pi + RTLSDR Web SDR Radio Software-Defined Radio is a radio communication system where components that have traditionally bee...
-
Colorful Arduino Tetris Game - WS2812B LED Matrix Tutorial Tetris is a puzzle video game created in 1985 by Alexey Pajitnov. Players manipulate falling geomet...
-
Ultra cheap Ultrasonic levitation Device - functionality and testing Ultrasonic levitation is phenomenon where objects are suspended in mid-air using the power of sound ...
-
DIY -Spirit PI- ESP32 + Smartphone Sensitive Metal Detector Pulse Induction (PI) metal detector operates on a principle based on sending short pulses of electr...
-
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...
-
Arduino 3D Printed self Balancing Cube Self-balancing devices are electronic devices that use sensors and motors to keep themselves balanc...
-
Arduino flame detector with alarms and automatic fire extinguishing A flame detector is an electronic device designed to sense the presence of flames or fire. There ar...
-
OpenWebRX - Simplest Rasprberry Pi + RTLSDR Web SDR Radio Software-Defined Radio is a radio communication system where components that have traditionally bee...
-
Colorful Arduino Tetris Game - WS2812B LED Matrix Tutorial Tetris is a puzzle video game created in 1985 by Alexey Pajitnov. Players manipulate falling geomet...
-
Ultra cheap Ultrasonic levitation Device - functionality and testing Ultrasonic levitation is phenomenon where objects are suspended in mid-air using the power of sound ...
-
DIY -Spirit PI- ESP32 + Smartphone Sensitive Metal Detector Pulse Induction (PI) metal detector operates on a principle based on sending short pulses of electr...
-
-
Commodore 64 1541-II 1581 Floppy Disk Drive C64 Power Supply Unit USB-C 5V 12V DIN connector 5.25
172 1 3 -
Easy to print simple stacking organizer with drawers
88 0 0 -
-
-
-
Modifying a Hotplate to a Reflow Solder Station
1141 1 6 -
MPL3115A2 Barometric Pressure, Altitude, and Temperature Sensor
642 0 1 -
-
Nintendo 64DD Replacement Shell
497 0 2 -
V2 Commodore AMIGA USB-C Power Sink Delivery High Efficiency Supply Triple Output 5V ±12V OLED display ATARI compatible shark 100W
1453 4 3