Announcement

Collapse
No announcement yet.

Emf Detector

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    FINISH EMF DETECTOR

    Comment


    • #17
      Very nice. Paku Congratulations.

      Comment


      • #18
        4LED EMF DETECTOR ATTINY85 SPRINT LAYOUT WITH HEX FILE
        I DONT HAVE SCHEMATIC CAUSE I DON'T KNOW HOW TO DRAW
        MAKE VIDEO PLEASE WHEN YOU MAKE IT

        EMF - ATtiny85.zip

        Comment


        • #19
          10x led Emf Coding

          // these constants won't change:
          const int analogPin = A0; // the pin that the potentiometer is attached to
          const int ledCount = 10; // the number of LEDs in the bar graph

          int ledPins[] = {
          2, 3, 4, 5, 6, 7, 8, 9, 10, 11
          }; // an array of pin numbers to which LEDs are attached


          void setup() {
          // loop over the pin array and set them all to output:
          for (int thisLed = 0; thisLed < ledCount; thisLed++) {
          pinMode(ledPins[thisLed], OUTPUT);
          }
          }

          void loop() {
          // read the potentiometer:
          int sensorReading = analogRead(analogPin);
          // map the result to a range from 0 to the number of LEDs:
          int ledLevel = map(sensorReading, 0, 1023, 0, ledCount);

          // loop over the LED array:
          for (int thisLed = 0; thisLed < ledCount; thisLed++) {
          // if the array element's index is less than ledLevel,
          // turn the pin for this element on:
          if (thisLed < ledLevel) {
          digitalWrite(ledPins[thisLed], HIGH);
          }
          // turn off all pins higher than the ledLevel:
          else {
          digitalWrite(ledPins[thisLed], LOW);
          }
          }
          }

          Comment


          • #20
            EMF DETECTOR UNDER BREADBOARD USING ATTINY85

            Comment


            • #21
              https://emfacademy.com/how-to-protec...-5g-radiation/

              https://www.instructables.com/id/Arduino-EMF-Detector/

              Comment


              • #22
                How To Protect Yourself (And Your Family) From 5G Radiation

                Hhahaahah ivconic Master

                Comment


                • #23
                  Several years ago i made herf device.
                  Was quite a experience.
                  In order to be able to measure the effects of it; i also tried to make similar emf kinda instrument.
                  So i made some obscure one. Good enough for what i wanted it.
                  But the subject of emf is always enough interesting and actual.
                  I took skim search over Aliexpress and have found several affordable emf meters, varying in price from $15 to $150.
                  Question is are those good enough.
                  And now with new 5G technology; it becomes pretty actual subject.
                  There is also tricky part of this, the question; is it better such meters to be super sensitive or not?
                  What we want to see is the "dangerous" part of such "radiations". Not only bare presence of such waves.
                  What would be the "dangerous" level? Another good question.
                  Best compromise is to project delicate device with adjustable sensitivity and selectivity.
                  Also to cover desired frequency ranges.
                  I am overwhelmed with so much jobs right now, so can not pay any effort on this.
                  But i am very interested in this subject.
                  5G spreads wide on several bands. This will need bit more clarification and investigation.
                  Next thing to do is to project most proper antenna for such meter.
                  And than the frontend itself.
                  Not a trivial task at all.

                  Comment


                  • #24
                    i still learning boss

                    Comment


                    • #25
                      Originally posted by paku View Post
                      i still learning boss
                      Of course, your attempt is quite alright.

                      Comment


                      • #26
                        See page 52 for plans to build a simple radar detector. I built this when it was published and it worked very well. I'm sure you could adapt it to a arduino

                        *** Please do not post copyright material on Geotech ***
                        Last edited by Qiaozhi; 05-16-2019, 08:52 AM.

                        Comment


                        • #27
                          Sorry

                          Here's the same circuit and discussion
                          https://electronics.stackexchange.co...r-circuit-work

                          Comment


                          • #28
                            Final And Finish EMF Detector @ (Ghost Detector)
                            Using Arduino Nano Pro

                            https://youtu.be/gLusZ-TaIVw?si=vZtial4CXe_BpM6X

                            Comment


                            • #29
                              OK, better Video next time please

                              Comment


                              • #30
                                Originally posted by bernte_one View Post
                                OK, better Video next time please
                                Hahaha ok bro next time

                                Comment

                                Working...