Attiny85 EMF Detector

29,606

350

24

Introduction: Attiny85 EMF Detector

About: I’m degree in Psychology in 2001, with a thesis in Artificial Intelligence. I’m working on Smart Object, IoT and Interactive Design. I’m developing autonomously my projects. I make autonomously programs in Ard…

This is a simple tutorial to create an EMF detector. You can use Arduino for this job, but is better use a microcontroller called Attiny85. It is possible program it throe the Arduino interface.

What is a Magnetic Field [from Wikipedia]

An electromagnetic field (also EMF or EM field) is a physical field produced by electrically charged objects. It affects the behavior of charged objects in the vicinity of the field. The electromagnetic field extends indefinitely throughout space and describes the electromagnetic interaction. It is one of the four fundamental forces of nature (the others are gravitation, weak interaction and strong interaction).

The field can be viewed as the combination of an electric field and a magnetic field. The electric field is produced by stationary charges, and the magnetic field by moving charges (currents); these two are often described as the sources of the field. The way in which charges and currents interact with the electromagnetic field is described by Maxwell's equations and the Lorentz force law. From a classical perspective in the history of electromagnetism, the electromagnetic field can be regarded as a smooth, continuous field, propagated in a wavelike manner; whereas from the perspective of quantum field theory, the field is seen as quantized, being composed of individual particles.

The materials of this project are:

Many of these components are in this KIT

Step 1: The Circuit

First step is create a circuit on the breadboard. Use a breadboard like in photo and try the circuit before solder it on protoboard. After the test you can use a protoboard to connect the attiny85 to leds and antenna.

For upload the code on Attiny85 you can use this shield and a programmer, or your Arduino UNO.

Step 2: The Code

See the code also on GitHub: https://github.com/masteruan/Attiny85_EMF

// EMF Detector Attiny85 and 4 led v1.0
// 23.10.2015
// original code/project by Aaron ALAI - aaronalai1@gmail.com
// modified for use by Giovanni Gentile - giovanni@0lab.it

#define NUMREADINGS 15 // Number of readings

int senseLimit = 15; // Raise this num to decrease sensitivity int val = 0; int antenna = A2;

int LED[] = {2,0,1,3}; // After verify the position of red green and yellow leds

// Variables for smoothing

int readings[NUMREADINGS];

int index = 0;

int total = 0;

int averange = 0;

void setup() {

pinMode(2, OUTPUT);

pinMode(0, OUTPUT);

pinMode(1, OUTPUT);

pinMode(3, OUTPUT);

pinMode(A2, INPUT);

// Test leds on start

for (int i=0; i<4; i++) {

digitalWrite(LED[i],HIGH);

delay(500);

}

for (int i=0; i<4; i++) {

digitalWrite(LED[i],LOW);

}

// Initialize all the readings

for (int i = 0; i < NUMREADINGS; i++) {

readings[i] = 0;

}

}

void loop() {

int val = analogRead(antenna);

if(val >= 1){

val = constrain(val, 1, senseLimit); // turn any readings higher than the senseLimit into the senseLmit

value val = map(val, 1, senseLimit, 1, 1023); // remap the values

total -= readings[index]; // subtract the last reading

readings[index] = val; // read from the sensor

total+= readings[index]; // add the reading to the total

index = (index + 1); // advance to the next index

if (index >= NUMREADINGS) index = 0;

averange = total / NUMREADINGS;

if (averange > 50) {

digitalWrite(2,HIGH); }

else {

digitalWrite(2,LOW); }

if (averange > 350) {

digitalWrite(0,HIGH); }

else {

digitalWrite(0,LOW); }

if (averange > 750) {

digitalWrite(1,HIGH); }

else {

digitalWrite(1,LOW); }

if (averange > 950) {

digitalWrite(3,HIGH); }

else { digitalWrite(3,LOW); }

}

}

Step 3: Install Arduino IDE and Programming Attiny

Go to www.arduino.cc

Go to Download (https://www.arduino.cc/en/Main/Software)

And select the previous installation of Arduino IDE 1.0.6. This is very IMPORTANT because with the new version of Arduino IDE is impossible to program the Attiny85. After the installation of attiny85 package you can select the Attiny models.

After installation of IDE you can programming the Attiny85 by your Arduino UNO. Then following this tutorial https://www.instructables.com/id/How-to-program-the...

Step 4: Final Result

I have used a perfboard and 4 little leds. The result is more pretty. A micro, open source, portable and geek EMF detector.

The electromagnetics fields now are visible. I use this in my courses. With this I demo the force of electromagnetic field. You can use this EMF detector, near a microwave or fridge or a big power supply. Also the ventilator generate a big electromagnetic filed.

Make It Glow! Contest

Participated in the
Make It Glow! Contest

1 Person Made This Project!

Recommendations

  • For the Home Contest

    For the Home Contest
  • Game Design: Student Design Challenge

    Game Design: Student Design Challenge
  • Big and Small Contest

    Big and Small Contest

24 Comments

0
MuaazH
MuaazH

3 years ago

pinMode(A2, INPUT); analog pin for attiny85 A2 is leg number 3

0
TheProfess0r
TheProfess0r

6 years ago

I'm kinda of new at circuitry and I don't quite know how to work the circuit on the breadboard, could you help?

0
daryl.rasmusen
daryl.rasmusen

6 years ago

What resistors do you use? I'm pretty sure you're not using non-standard 40ohm ones.

0
masteruan
masteruan

Reply 6 years ago

The 4 resistors are for leds. The resistor for probe is 1 M ohm.

0
R0b0BCB
R0b0BCB

6 years ago

Excellent circuit! Just finished my own version of your project and wanted to say thanks forbthe inspiration

0
masteruan
masteruan

Reply 6 years ago

Wooo great! Post some photo if you can.
Thank's for your message. I make the Instructables just for people like you :)

0
Akshaypoh
Akshaypoh

6 years ago

hi thanks for the information I was wondering if you can modify this circuit to measure the level of emf for a particular frequency band .

0
masteruan
masteruan

Reply 6 years ago

Hi, you can change the resistance for modify the frequency.

0
Akshaypoh
Akshaypoh

Reply 6 years ago

can you suggest a combination to measure power of 10khz to 10ghz band

0
Captain CFCs
Captain CFCs

7 years ago

Hi, I was wondering if you had any advice for someone who wants to add a buzzer sound that increases in intensity (similar to a Geiger counter) as opposed to LEDs?

0
masteruan
masteruan

Reply 7 years ago

Hi,
you can use a simple buzzer. Then Arduino have an excellent library to use the piezo buzzer. You can use "tone(xx,xxx)".

0
Captain CFCs
Captain CFCs

Reply 7 years ago

Okay, thank you! Very eager to begin construction.

1
fraz75
fraz75

7 years ago

hi, how is the resistor that you see in the circuit?

0
masteruan
masteruan

Reply 7 years ago

Are the (optional) 4 40 Ohm resistors

0
Saiyam
Saiyam

7 years ago

This could be very useful for my workspace. Thank you for this great project :)

0
masteruan
masteruan

Reply 7 years ago

I'm glad you can use it. I use it during my workshops.

0
kooth
kooth

7 years ago

Very clever and concise! Thanks for posting!

0
masteruan
masteruan

Reply 7 years ago

Great! Thanks :-)