Hop til indhold
  • Log ind
  • Opret konto
  • Varekurv
  • Gå til Kassen

Min Arduino

Ideer til undervisning med Arduino, Micro:bit eller ESP32

Søg efter:
0
TOTAL
  • Forside
  • Butik
  • Salgs- og leveringsbetingelser
  • Bøger
    • Kom godt i gang med Arduino
      • Om bogens indhold
      • Indholdsfortegnelse
    • Arduino, Android apps og Bluetooth
      • Om bogens indhold
      • Indholdsfortegnelse
    • Hjælp
      • Hjælp til download af programmer
  • P-1
    • Projekt 1A
    • Projekt 1B
    • Projekt 1C
    • Projekt 1C-2
    • Projekt 1D
    • Projekt 1D-2
    • Projekt 1D-3
    • Projekt 1E
    • Projekt 1F
  • P-2
    • Projekt 2A
    • Projekt 2B
    • Projekt 2C
  • P-3
    • Projekt 3A
    • Projekt 3B
    • Projekt 3C
  • P-4
    • Projekt 4A
    • Projekt 4B
    • Projekt 4C
  • P-5
    • Projekt 5A
    • Projekt 5B
    • Projekt 5C
  • P-6
    • Projekt 6A
    • Projekt 6B
    • Projekt 6C
  • P-7
    • Projekt 7A
    • Projekt 7B
    • Projekt 7C
    • Projekt 7D
  • P-8
    • Projekt 8A
    • Projekt 8B
    • Projekt 8C
    • Projekt 8D
    • Projekt 8E
    • Projekt 8F
    • Projekt 8G
  • P-9
    • Projekt 9A
    • Projekt 9B
    • Projekt 9C
  • P-10
    • Projekt 10A
    • Projekt 10B
    • Projekt 10C
    • Projekt 10D
  • P-11
    • Projekt 11A
    • Projekt 11B
  • P-12
    • Projekt 12A
    • Projekt 12B
    • Projekt 12C
    • Projekt 12D
    • Projekt 12E
  • P-13
    • Projekt 13A
    • Projekt 13B
    • Projekt 13C
    • Projekt 13D
  • P-14
    • Projekt 14A
    • Projekt 14B
    • Projekt 14C
    • Projekt 14D
    • Projekt 14E
  • P-15
    • Projekt 15A
    • Projekt 15B
    • Projekt 15C
    • Projekt 15D
  • P-16
    • Projekt 16A
  • P-17
    • Projekt 17A
  • P-18
    • Projekt 18A
    • Projekt 18B
  • P-19
    • Projekt 19A
    • Projekt 19B
    • Projekt 19C
    • Projekt 19D
    • Projekt 19E
  • Internet of Things (IoT)
    • Setup af D1 og D1 mini boards
    • Blink program på D1 eller D1 mini board
    • D1/D1 mini boards som webserver
    • D1, DHT11 sensor og ThingSpeak
    • D1 mini, DHT11 sensor shield og ThingSpeak
    • Test af D1 mini board med relay shield
  • Andre projekter
    • Måling af fugtighed i jord (tal/procent)
    • Manuel vanding
    • Automatisk vanding med en lille pumpe – Arduino UNO
    • Automatisk vanding med større pumpe
    • Prank Box
    • Ohmmeter
    • 12C Scanner
    • Rullende tekst med LCD1602
    • Digital lineal med LCD
  • Byg en bil (N/T)
  • Temperaturmålinger
    • Kontaktløs temperaturmåling
    • Temperaturmåling med DS18B20 (vandtæt sensor)
    • Temperaturmåling med TMP36
  • Power på robotbiler
  • BBC micro:bit
    • BBC micro:bit og servomotorer
      • BBC micro:bit og en servomotor (0-180 grader)
      • BBC micro:bit og to servomotorer (0-180 grader)
      • BBC micro:bit og en servomotorer (0-360 grader)
      • Ekstra menupunkt med nye blokke
      • BBC micro:bit og en servomotor (360 grader)
      • Micro:bit og to servomotorer (360 grader)
    • Micro:bit robotbiler
      • Robotbilen “Alfa-1” til Android
      • Robotbilen “Alfa-1” til iPhone
      • Robotbilen “Alfa-1” styret af en micro:bit
      • Line Follower Robot “Alfa-1a”
      • Robotbilen “Alfa-2” til Android
      • Robotbilen “Alfa-2” styret af en micro:bit
      • Line Follower Robot “Alfa-2a”
      • Robotbilen “Alfa-3” styret af en micro:bit
    • Anvendelse af lyssensor til micro:bit
    • Anvendelse af temperatursensor til en micro:bit
    • Automatisk vanding med micro:bit
    • Anvendelse af afstandssensor til micro:bit
  • Micro:bit radio control
    • Tænde og slukke LED med en ekstra micro:bit
    • En micro:bit styrer trådløst en DC motor
    • Micro:bit fjernstyrer servomotor
    • Micro:bit fjernstyrer trådløst to servomotorer
  • Arduino IDE og micro:bit
    • En micro:bit styrer trådløst en DC motor
    • Anvendelse af vandtæt temperatursensor til micro:bit
    • Kontaktløs temperatursensor til micro:bit
  • Micro:bit både
    • Hjuldamper styret af micro:bit
    • Motorbåd styret af en micro:bit
    • Speedbåd styret af en micro:bit

Mini PIR sensor

28,00 kr.

Se også denne PIR sensor.

På lager

Varenummer (SKU): R124 Kategori: Sensorer
  • Beskrivelse

Beskrivelse

Benforbindelser:

 

 

 

 

 

 

 

 

Kredsløbsopstilling:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Program:

/* PIR sensor tester*/

int ledPin = 13; // choose the pin for the LED
int inputPin = 2; // choose the input pin (for PIR sensor)
int pirState = LOW; // we start, assuming no motion detected
int val = 0; // variable for reading the pin status

void setup() {
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inputPin, INPUT); // declare sensor as input

Serial.begin(9600);
}

void loop(){
val = digitalRead(inputPin); // read input value
if (val == HIGH) { // check if the input is HIGH
digitalWrite(ledPin, HIGH); // turn LED ON
if (pirState == LOW) {
// we have just turned on
Serial.println(“Motion detected!”);
// We only want to print on the output change, not state
pirState = HIGH;
}
} else {
digitalWrite(ledPin, LOW); // turn LED OFF
if (pirState == HIGH){
// we have just turned of
Serial.println(“Motion ended!”);
// We only want to print on the output change, not state
pirState = LOW;
}
}
}

 

 

Specifications:

 

AM312 body sensors modules: a passive body based on the digital intelligent infrared technology, automatic control products. High sensitivity, high reliability. Widely used in various auto-sensing electrical equipment.

– Immunity enhancement, internal use of digital signal processing, direct high-low output.

– Repeatable trigger: the sensor output high after, the delay period,

if there is human activity in its sensing range, the output will remain high

until the people left after the delay, it becomes low (ie: sensor module detects the

human body every activity will be automatically extended a period delay,

and to the last activity time as the starting point of the delay time).

 

Technical Parameters:

  1. Working voltage: DC 2.7-12V;
  2. Static power consumption: <0.1mA;
  3. Delay time: 2 seconds;
  4. The blocking time: 2 seconds;
  5. Trigger: can be repeated;
  6. Sensing range: ≤100 degree cone angle, 3-5 m; (required depending on the lens)
  7. Working temperature: -20 – + 60 degree
  8. PCB Dimensions: 10mm x 8mm
  9. Total size: Approx. 12mm x 25 mm
  10. Module Lens: Small lens

 

 

 

 

Relaterede varer

  • TMP36GZ Temperatursensor

    23,00 kr.
    Tilføj til kurv
  • Breakout Module Shield Joystick Game Controller for Arduino

    25,00 kr.
    Tilføj til kurv
  • Lydsensor

    18,00 kr.
    Tilføj til kurv
  • RFID-Tag reader

    30,00 kr.
    Tilføj til kurv

© 2023 Min Arduino | All Rights Reserved