Casa > C > Como Fazer Um Sensor Para O Arduino

Como fazer um sensor para o Arduino

P>Pode usar o TSOP 1738 com o Arduino para fazer um sensor. O TSOP consiste em díodo PIN e pré-amplificador que está incorporado num único pacote. It's active low and gives 5 volatge in off state.

You need to interface this sensor with one of Arduino's digital pin and it will sense IR light and gives 0V on pin.

You can use IR remote lib from Arduino to sense data from IR remote. Aqui está um exemplo de código para a sua referência.

Espero que tenha obtido a sua resposta. Upvote the answer of it's useful to you.

Keep learning……

  1. #include  
  2. #include  
  3. #include  
  4. #include  
  5.  
  6. int receiver = 11; // Signal Pin of IR receiver to Arduino Digital Pin 11 
  7.  
  8. IRrecv irrecv(receiver); // create instance of 'irrecv' 
  9. decode_results results; // create instance of 'decode_results' 
  10.  
  11. void setup()  
  12. Serial.begin(9600); 
  13. Serial.println("IR Receiver Button Decode");  
  14. irrecv.enableIRIn(); // Start the receiver 
  15. pinMode(13,OUTPUT); 
  16. pinMode(12,OUTPUT); 
  17.  
  18.  
  19.  
  20. void loop()  
  21. if (irrecv.decode(&results)) // have we received an IR signal? 
  22.  
  23. translateIR();  
  24. irrecv.resume(); // receive the next value 
  25. }  
  26. }/* --(end main loop )-- */ 
  27.  
  28. /*-----( Function )-----*/ 
  29. void translateIR() // takes action based on IR code received 
  30.  
  31. // describing Remote IR codes  
  32.  
  33.  
  34. switch(results.value) 
  35.  
  36.  
  37.  
  38. case 0x14EB18E7:digitalWrite(12,LOW); digitalWrite(13,HIGH); break; 
  39. case 0x14EB30CF:digitalWrite(13,LOW); digitalWrite(12,HIGH); break; 
  40. // ^here your hex code that you got in irdumpv2 or irdemo 
  41.  
  42. default:  
  43. Serial.println(" other button "); 
  44.  
  45. }// End Case 
  46.  
  47. delay(100); // to not get immediate repeat 
  48.  
  49.  
  50. }  

De Ryle Lastinger

What are the ten best gel pens within 100 rupees? :: O que significa 1 atm resistente à água?