Saturday, 29 February 2020
Ultrafast probing reveals intricate dynamics of quantum coherence
Cold sintering produces capacitor material at record low temperatures
Friday, 28 February 2020
Stress-relief substrate helps OLED stretch two-dimensionally?
Thursday, 27 February 2020
Bluetooth, transistors, and buck-converters
Hey there,
This is Oyvind checking in from Valencia in Spain.
In the last few weeks, I’ve been busy recording podcasts, designing circuits, and creating electronics courses for Ohmify.
If I were to summarize my last few weeks in three words, they would be:
Bluetooth, transistors, and buck-converters.
I feel very lucky, and very nerdy, for being able to fill my time with these things.
For those of you who are members of Ohmify, you’ve already seen some of the courses I’ve published over the last weeks. And there is much more to come. I have several half-finished courses (and a million ideas for new courses) that are on the way.
If you’re not a member, you can join us here: https://ohmify.com/join/
I’m also working on a new podcast with my pal Elias Bakken. But I’m going to wait a bit more before saying too much about it, as it is a very unpolished project. We have no idea what we’re doing yet. And I want the first episode you hear to give a lot of value. Hopefully, the next episode will be “the one”.
And by the way, my Youtube channel just reached 10.000 subscribers!
I upload videos from my electronics-related travels (Berlin, China, Colombia, Florida) – and lessons on how different things in electronics work.
Check it out here:
https://youtube.com/c/build-electronic-circuits
Keep On Soldering!
Oyvind @ build-electronic-circuits.com
Copyright Build Electronic Circuits
Portable 'electronic nose' can accurately pick up esophageal cancer precursor
Wednesday, 26 February 2020
New study allows brain and artificial neurons to link up over the web
Silicon's exact conductivity for future solar cell, semiconductor applications
Using light to put a twist on electrons
Perovskite solar cells made with peppermint oil and walnut aroma food additives, preventing lead leakage
Tuesday, 25 February 2020
Simple self-charging battery offers power solutions for devices
Sunday, 23 February 2020
What if we could teach photons to behave like electrons?
Friday, 21 February 2020
Shaping the rings of molecules
Thursday, 20 February 2020
Magnet-controlled bioelectronic implant could relieve pain
Wednesday, 19 February 2020
Study uncovers new electronic state of matter
Tuesday, 18 February 2020
Advance in next-generation lithium metal batteries
Topological materials outperform through quantum periodic motion
Ultrasound device improves charge time and run time in lithium batteries
Monday, 17 February 2020
New green technology generates electricity 'out of thin air'
Saturday, 15 February 2020
New material has highest electron mobility among known layered magnetic materials
Deep learning can fool listeners by imitating any guitar amplifier
Friday, 14 February 2020
Making the internet more energy efficient through systemic optimization
First electrically-driven 'topological' laser
Something from nothing: Using waste heat to power electronics
Thursday, 13 February 2020
Studying electrons, bridging two realms of physics: Connecting solids and soft matter
Moving precision communication, metrology, quantum applications from lab to chip
New air-pressure sensor could improve everyday devices
Graphene forms under microscope's eye
Wednesday, 12 February 2020
Researchers develop smaller, lighter radiation shielding
Tuesday, 11 February 2020
'Atomic dance' reveals new insights into performance of 2D materials
New threads: Nanowires made of tellurium and nanotubes hold promise for wearable tech
Using sound and light to generate ultra-fast data transfer
How to Build an Arduino Theremin
In this short tutorial, you will learn how to build an Arduino Theremin. You only need three components plus the Arduino, wires, and breadboard.
Use the breadboard diagram or the video below to see how to connect everything.
The Components You’ll Need
- Buzzer (passive)
- Photoresistor
- Resistor 220Ω
- Arduino
- Wires
- Breadboard
How The Arduino Theremin Works
An Arduino theremin isn’t the same as the original theremin invented by Léon Theremin where you can control both amplitude and frequency.
But it’s a fun and simple project anyway!
The photoresistor is connected with the resistor to form a voltage divider. The Arduino reads the voltage out from the voltage divider.
This means that when the photoresistor changes its resistance (that is when the light changes) the voltage that the Arduino reads changes.
The Arduino controls the frequency of the buzzer. By using the voltage value the Arduino reads in, the Arduino changes the tone of the buzzer so that the tone you hear is directly dependent on the light that the photoresistor sees.
The Arduino Code
Copy and paste the code below into a new project. Then compile and upload the code to your Arduino.
int analogPin = A0; // Input from photoresistor connected to A0 int buzzerPin = 4; // Positive buzzer pin connected to pin 4 long max_frequency = 2500; // Max frequency for the buzzer long frequency; // The frequency to buzz the buzzer int readVal; // The input voltage read from photoresistor void setup() { pinMode(buzzerPin, OUTPUT); // set a pin for buzzer output } void loop() { readVal = analogRead(analogPin); // Reads 0-1023 frequency = (readVal * max_frequency) / 1023; buzz(buzzerPin, frequency, 10); } void buzz(int targetPin, long frequency, long length) { long delayValue = 1000000/frequency/2; long numCycles = frequency * length/ 1000; for (long i=0; i < numCycles; i++) { digitalWrite(targetPin,HIGH); delayMicroseconds(delayValue); digitalWrite(targetPin,LOW); delayMicroseconds(delayValue); } }
Questions?
Did you build this Arduino Theremin? Are you having problems building it? Let me know in the comments below.
Copyright Build Electronic Circuits
Monday, 10 February 2020
Diagnostics: Thermometer can be stretched and crumpled by water
Sunday, 9 February 2020
Rolled up carbon nanotubes
Saturday, 8 February 2020
Fireproof, lightweight solid electrolyte for safer lithium-ion batteries
Friday, 7 February 2020
Engineers mix and match materials to make new stretchy electronics
Thursday, 6 February 2020
A gold butterfly can make its own semiconductor skin
Wednesday, 5 February 2020
Crystal-stacking process can produce new materials for high-tech devices
Controlling light with light
Monday, 3 February 2020
New quantum switch turns metals into insulators
Research zeroing in on electronic nose for monitoring air quality, diagnosing disease
Tiny, wireless antennas use light to monitor cellular communication
Researchers developed a biosensing technique that eliminates the need for wires. Instead, tiny, wireless antennas use light to detect minute...
-
In this project, we will learn about the MCP2515 CAN Controller Module, how to interface the MCP2515 CAN Bus Controller with Arduino and fin...
-
Interfacing DC motor to the microcontroller is a very important concept in many industrial and robotic applications. By interfacing DC motor...
-
Do you need a MOSFET gate resistor? What value should it be? And should it go before or after the pulldown resistor? If you’re a bit impati...