Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by lucky6772

  1. L

    Rf based wireless trigger

    My requirement is that i want to trigger flash for example if two studio flash are installed in one hall..they should not b trigger from only one transmitter remote .they should be only trigger from their respective remotes.for example say flash1 remote 1, flash2 remote 2, the flash1 should not...
  2. L

    Rf based wireless trigger

    i am making a wireless trigger to trigger studio flash. for this i am using 8051 controller rf module, encoder ht12e ,decoder ht12d. transmitter side: i am using encoder with at89c2051 rf transmitter receiver side: using decoder with 8051 rf receiver now the requirement is the if at a place...
  3. L

    problem in ir transmission range with tsop1738

    heya m still not got any progress..some how i conclude i need fast switching circuit to drive ir led..! can u help..! using fET...i am not getting hig range,,!
  4. L

    problem in ir transmission range with tsop1738

    yes it is..38khz..! so what else should do now..?
  5. L

    problem in ir transmission range with tsop1738

    the actual freequency comes out at controllet pin is11khz..! dat is due to 38khz on for 1ms and 38khz off for 6ms..!
  6. L

    problem in ir transmission range with tsop1738

    OBJECTIVE: i want to design a automatic flush system. the system that detect a person and automatically flush the for 7sec after using a toilet by the person..! TO detect a person i need to use IR SENSOR as per the requirement the system should able be to detect a person standing 2ft in front...
  7. L

    problem in ir transmission range with tsop1738

    plz reply me i am in big trouble cant get a range..:(
  8. L

    problem in ir transmission range with tsop1738

    #include <REG2051.H> sbit ir=P1^7; sbit motor=P1^6; sbit motor1=P1^4; sbit sense=P3^3; int a,b,c,d,e,j,k,l,m,i,n,flag; void delay3() { for(j=0;j<1000;j++) for(k=0;k<500;k++); } void delay7() { for(i=0;i<7;i++) { for(l=0;l<1000;l++) for(m=0;m<75;m++); } } void timer0_isr () interrupt 1 {...
  9. L

    problem in ir transmission range with tsop1738

    #include <REG2051.H> void delay1(void); sbit mybit=P1^7; int c, n; void delay(unsigned int msec ) // Time delay function { int i ,j ; for(i=0;i<msec;i++) for(j=0; j<1275; j++); } void timer0_isr () interrupt 1 { mybit = ~mybit; } void main () { P1=0x00; TMOD = 0X02; TL0 =...
  10. L

    problem in ir transmission range with tsop1738

    #include <REG2051.H> void delay1(void); sbit mybit=P1^7; int c, n; void timer0_isr () interrupt 1 { mybit = ~mybit; } void main () { P1=0x00; TMOD = 0X02; TL0 = 0xf4; TH0 = 0xf4; IE = 0x82; TR0 = 1; while(1) { if(n%2!=0) {...
  11. L

    problem in ir transmission range with tsop1738

    thnxs for the suggestion but i dnt wanna use extra ic.. i wanna do it from controller only...! - - - Updated - - - #include <REG2051.H> void delay1(void); sbit mybit=P1^7; int a; void delay(unsigned int msec ) // Time delay function { int i ,j ; for(i=0;i<msec;i++) for(j=0; j<1912; j++); }...
  12. L

    problem in ir transmission range with tsop1738

    yes its generating the frequency vry fine..crystal i am using is 11.0592mhz..! but srsly my doubt is dis only dat i have trnsmite dis frequency for how much time..70cycles is equal to much mill sec..? then data sheet mentioned gap of 14 cycle..?
  13. L

    problem in ir transmission range with tsop1738

    so exactly nw how much should b the burst length tell me excatly....in datasheet it mention 70cycles...but in c language i need in sec or milli sec..so plz tell me..!cant calculate cycles..!
  14. L

    problem in ir transmission range with tsop1738

    thnxs fvm.. can u tell what else should i do in my code....kindly help me sir..! #include <REG2051.H> void delay1(void); sbit mybit=P1^7; void timer0_isr () interrupt 1 { mybit = ~mybit; } void main () { P1=0x00; TMOD = 0X02; TL0 = 0xf4; TH0 = 0xf4; IE =...
  15. L

    problem in ir transmission range with tsop1738

    Hi guys I am making automatic urinal flush system. I need to dect a person for dat.! I am using tsop1738 for detecting ir signal.! I m generating 38kHz frequency from microcontroller n transmiting it through ir led but I am not getting good range I need at 4ft but the only range m getting is...

Part and Inventory Search

Back
Top