My antenna is not working properly which is made of single core wire. The single core wire cannot able to generate and shows the reading.
Perhaps there is a simple reason you can't detect ghosts.
https://www.livescience.com/33237-6-paranormal-video-hoaxes.html
And lots more on the web and in books !
MK
No it is not based on detecting a ghost or not. Actually it detects any object which is good conductor of electricity.
Even if human being comes close to this detector all the LED will glow. I found this experiment from Arduino Project Handbook author Mark Geddes.
Make sure the wire (antenna) is connected to the Analog pin of Arduino. Let's say A0. Use the function analogRead(0) and store it in a variable. Output that digital value on digital pins.
To check if you are getting any values or not, open the serial monitor and print the values using Serial.println();
Here's the rough sketch
void setup() { Serial.begin(9600); } void loop() { A = analogRead(0); Serial.println(A); }