QNA > C > Come Fare Sensore Ir Per Arduino

Come fare sensore ir per Arduino

È possibile utilizzare TSOP 1738 con Arduino per renderlo sensore. TSOP consiste di diodo PIN e preamplificatore che è incorporato in un unico pacchetto. E 'attivo basso e dà 5 volatge in stato off.

È necessario interfacciare questo sensore con uno dei Arduino 's pin digitale e sarà senso IR luce e dà 0V sul pin.

È possibile utilizzare IR lib remoto da Arduino per rilevare i dati da IR remoto. Ecco il codice di esempio per il vostro riferimento.

Spero che abbiate ottenuto la vostra risposta. 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. }  

Di Rossen

Quali sono le alternative alle piattaforme di social media come WhatsApp, Twitter, Google Plus, Facebook Messenger, YouTube, ecc. in Cina? :: What are the ten best gel pens within 100 rupees?
Link utili