Skip to main content

Home/ uydudoktoru.com/ Group items tagged LED

Rss Feed Group items tagged

Ahmet UZUN

Precison Power Supply, 0-40V/2A (0-40V/2A Güç Kaynağı) - 0 views

  •  
    " Precision Power Supply © 1986 Doug Bedrosian and 2010 Tony van Roon "This Precision Power Supply is a nice addition on your workbench as primary, or in my case, a supplementary power supply. With zero to 40V and 2A with adjustable current limiting it will surely gets lots of use on your bench. On average the most amperage for a power supply someone needs is around two or three amps. The sensitivity for current limiting is fully adjustable. Have fun building!" Introduction: Test instruments are considered to be some of the most useful tools available when constructing a project. They are also considered to be the most expensive tools one could buy. For instance, a power supply of any quality and usefulness can range from several hundred dollars to several thousand dollars. The alternative to buying a power supply is to build one. The power supply in this article has a voltage range from 0 to 40V and a current range from 0 to 2 amps with current limiting set by the user. The quality of the supply is determined by the time and care the builder takes while constructing it. How It Works: The power supply is best understood when divided into separate parts. The first parts to look at are the two power supply sections. The output supply section consists of XFMR1, Br1, C1, and C2. They supply the appropriate voltage and current required at the output. The IC supply consists of XFMR2, Br2, and C3. The two power supply sections must be separate from each other because a floating ground is required for IC1. The next section is the voltage control. RV1 and R2 determine the operating point of a constant current source out of pin 3 of IC1. By varying RV1 the maximum output voltage will be set. Pins 8 and 9 are inputs to a high gain differential amplifier contained in IC1. By adjusting potentiometer P1 the voltage at pin 8 will vary; this will cause the voltage at the output to change until it is equal to the voltage at pin 8. Due to the high gain of the differenti
  •  
    Precision Power Supply © 1986 Doug Bedrosian and 2010 Tony van Roon "This Precision Power Supply is a nice addition on your workbench as primary, or in my case, a supplementary power supply. With zero to 40V and 2A with adjustable current limiting it will surely gets lots of use on your bench. On average the most amperage for a power supply someone needs is around two or three amps. The sensitivity for current limiting is fully adjustable. Have fun building!" Introduction: Test instruments are considered to be some of the most useful tools available when constructing a project. They are also considered to be the most expensive tools one could buy. For instance, a power supply of any quality and usefulness can range from several hundred dollars to several thousand dollars. The alternative to buying a power supply is to build one. The power supply in this article has a voltage range from 0 to 40V and a current range from 0 to 2 amps with current limiting set by the user. The quality of the supply is determined by the time and care the builder takes while constructing it. How It Works: The power supply is best understood when divided into separate parts. The first parts to look at are the two power supply sections. The output supply section consists of XFMR1, Br1, C1, and C2. They supply the appropriate voltage and current required at the output. The IC supply consists of XFMR2, Br2, and C3. The two power supply sections must be separate from each other because a floating ground is required for IC1. The next section is the voltage control. RV1 and R2 determine the operating point of a constant current source out of pin 3 of IC1. By varying RV1 the maximum output voltage will be set. Pins 8 and 9 are inputs to a high gain differential amplifier contained in IC1. By adjusting potentiometer P1 the voltage at pin 8 will vary; this will cause the voltage at the output to change until it is equal to the voltage at pin 8. Due to the
Ahmet UZUN

230v ile 123 adet beyaz led çalıştırma - 0 views

  • DİKKAT : Devre yüksek voltaj ile çalışmaktadır dikkatli olun kondansatör bağlantılarına dikkat edin + – kutupları ters bağlarsanız yüksek voltajda büyük patlamalar olabilir devreyi çalıştırmadan önce Sigortalı Elektrik Hattı,koruyucu gözlük kullanın
  •  
    230v ile 123 adet beyaz led çalıştırma
  •  
    230v ile 123 adet beyaz led çalıştırma
Ahmet UZUN

Pic ile Kara Şimşek Devresi - 0 views

  • Çocukluğumuzun meşhur dizisi Knight Rider yada kara şimşek’deki siyah arabanın önündeki led efektini sanırım hepimiz biliriz. Bu uygulamada B,C,D portları kullanarak 18 led ile yürüyen ışık devresi yapılmıştır. Kodlarda yapacağınız değişiklik ile led sayısını artırıp azaltabilirsiniz. PHP Kodu: #include <16f877.h>#fuses XT,NOWDT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NOCPD#use delay(clock=4000000)//Tüm programdaki gecikmeleri ayarlama#define gecikme 30 void main (){int i,j;    while(1)   { // İLERİYE SAYIM       // B portu için      j=1;  //kaydırma işlemi için sayı değeri      for(i=0;i<8;i++)      {  output_b(j);      // j sayı değeri B portunda         j=j<<1;         // j sayısını  1 bit sola kaydır         delay_ms(gecikme);  //ledin yanık kalma süresigecikme veriliyor      }   // C portu için      output_b(0);//son kalan portb bilgisi sıfırlanır      j=1;      for(i=0;i<8;i++)      {  output_c(j);         j=j<<1;         delay_ms(gecikme);      }      // D portu için      output_c(0);//son kalan portc bilgisi sıfırlanır      j=1;      for(i=0;i<8;i++)      {  output_d(j);         j=j<<1;         delay_ms(gecikme);      }      //İLERİYE SAYIM SONU     //GERİYE SAYIM D PORTU İLE BAŞLAR      j=128; //kaydırma işlemi için sayı değeri     for(i=0;i<7;i++)      {  j=j>>1;    // j sayısını  1 bit sola kaydır         output_d(j); //j sayısı çıkış portunda         delay_ms(gecikme); //ledin yanık kalma süresi      }      output_d(0);//son kalan portd bilgisi sıfırlanır      j=128; //kaydırma işlemi için sayı değeri     for(i=0;i<7;color: #
  •  
    Çocukluğumuzun meşhur dizisi Knight Rider yada kara şimşek'deki siyah arabanın önündeki led efektini sanırım hepimiz biliriz. Bu uygulamada B,C,D portları kullanarak 18 led ile yürüyen ışık devresi yapılmıştır. Kodlarda yapacağınız değişiklik ile led sayısını artırıp azaltabilirsiniz. PHP Kodu: #include #fuses XT,NOWDT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NOCPD #use delay(clock=4000000) //Tüm programdaki gecikmeleri ayarlama #define gecikme 30 void main () {int i,j; while(1) { // İLERİYE SAYIM // B portu için j=1; //kaydırma işlemi için sayı değeri for(i=0;i<<<>1; // j sayısını 1 bit sola kaydır output_d(j); //j sayısı çıkış portunda delay_ms(gecikme); //ledin yanık kalma süresi } output_d(0);//son kalan portd bilgisi sıfırlanır j=128; //kaydırma işlemi için sayı değeri for(i=0;i>1; // j sayısını 1 bit sola kaydır output_c(j); //j sayısı çıkış portunda
  •  
    Çocukluğumuzun meşhur dizisi Knight Rider yada kara şimşek'deki siyah arabanın önündeki led efektini sanırım hepimiz biliriz. Bu uygulamada B,C,D portları kullanarak 18 led ile yürüyen ışık devresi yapılmıştır. Kodlarda yapacağınız değişiklik ile led sayısını artırıp azaltabilirsiniz. PHP Kodu: #include #fuses XT,NOWDT,NOBROWNOUT,NOLVP,NOPUT,NOWRT,NOCPD #use delay(clock=4000000) //Tüm programdaki gecikmeleri ayarlama #define gecikme 30 void main () {int i,j; while(1) { // İLERİYE SAYIM // B portu için j=1; //kaydırma işlemi için sayı değeri for(i=0;i<<<>1; // j sayısını 1 bit sola kaydır output_d(j); //j sayısı çıkış portunda delay_ms(gecikme); //ledin yanık kalma süresi } output_d(0);//son kalan portd bilgisi sıfırlanır j=128; //kaydırma işlemi için sayı değeri for(i=0;i>1; // j sayısını 1 bit sola kaydır output_c(j); //j sayısı çıkış portunda delay_m
Ahmet UZUN

0-30 vdc stabılızed power supply wıth current control 0.002-3 a - 0 views

  •  
    "0-30 VDC STABILIZED POWER SUPPLY WITH CURRENT CONTROL 0.002-3 A 0-30 VDC STABİLİZE GÜÇ KAYNAĞI İLE AKIM KONTROL,002-3 A Orijinal görüntüsünü görmek için buraya tıklayın. 925x541 px. General Description This is a high quality power supply with a continuously variable stabilised output adjustable at any value between 0 and 30VDC. The circuit also incorporates an electronic output current limiter that effectively controls the output current from a few milliamperes (2 mA) to the maximum output of three amperes that the circuit can deliver. This feature makes this power supply indispensable in the experimenters laboratory as it is possible to limit the current to the typical maximum that a circuit under test may require, and power it up then, without any fear that it may be damaged if something goes wrong. There is also a visual indication that the current limiter is in operation so that you can see at a glance that your circuit is exceeding or not its preset limits. Technical Specifications - Characteristics Input Voltage: ................ 24 VAC Input Current: ................ 3 A (max) Output Voltage: ............. 0-30 V adjustable Output Current: ............. 2 mA-3 A adjustable Output Voltage Ripple: . 0.01 % maximum FEATURES - Reduced dimensions, easy construction, simple operation. - Output voltage easily adjustable. - Output current limiting with visual indication. - Complete protection of the supplied device against over loads and malfunction. How it Works To start with, there is a step-down mains transformer with a secondary winding rated at 24 V/3 A, which is connected across the input points of the circuit at pins 1 & 2. (the quality of the supplies output will be directly proportional to the quality of the transformer). The AC voltage of the transformers secondary winding is rectified by the bridge formed by the four diodes D1-D4. The DC voltage taken across the output of the bridge is smoothed by the filter formed by the
  •  
    0-30 vdc stabılızed power supply wıth current control 0.002-3 a
Ahmet UZUN

Audio Power Meter Using Duo LED - 0 views

  • Audio Power Meter Using Duo LED (Çift renkli led ile Ses Güç Ölçer devresi)
  •  
    "Audio Power Meter Using Duo LED"
Ahmet UZUN

Mosfet TESTER - 0 views

  •  
    "Mosfet TESTER This is a variation on the astable multivibrator. Circuit was recently developed to test for N-mosfets(the power kind e.g irf 830) I don't claim circuit can test all bad mosfets or all fault mosfet conditions. If mosfet is working it will operate in the astable multivibrator circuit causing the Led to flash. A bad mosfet will not cause the LED to flash. Below is the circuit diagram, the other half of the astable utilizes an npn transistor to make the circuit cheap. Almost any npn transistor will work in this circuit. The npn transistor to the right is used as a common emitter buffer that also drives the led as it receives pulses from the mosfet drain. Orijinal görüntüsünü görmek için buraya tıklayın. 622x444 px. note diode is a light emitting Diode"
  •  
    Mosfet TESTER
Ahmet UZUN

19 Adet beyaz led ile 220volt enerji tasarruflu lamba - 0 views

  •  
    19 Adet beyaz led ile 220volt enerji tasarruflu lamba
  •  
    19 Adet beyaz led ile 220volt enerji tasarruflu lamba
Ahmet UZUN

Remote Tester Circuit - 0 views

  • A simple Remote tester to check all types of Remote hand sets……. This simple remote tester can be a good tool to check whether a remote hand set is working or not. It uses the commonly available IR sensor TSOP 1738.The IR sensor has a PIN photodiode and an FET signal amplifier enclosed in an Epoxy case. The sensor requires five volts for its operation and its output is active low. Normally its output gives + 5 volts and goes down to zero when it receives 38 KHz pulsed IR rays. When the remote handset is focused on to the sensor and any one button is pressed, buzzer beeps and LED blinks indicating that the handset is OK. Remote Tester Circuit Diagram
  •  
    "A simple Remote tester to check all types of Remote hand sets……. This simple remote tester can be a good tool to check whether a remote hand set is working or not. It uses the commonly available IR sensor TSOP 1738.The IR sensor has a PIN photodiode and an FET signal amplifier enclosed in an Epoxy case. The sensor requires five volts for its operation and its output is active low. Normally its output gives + 5 volts and goes down to zero when it receives 38 KHz pulsed IR rays. When the remote handset is focused on to the sensor and any one button is pressed, buzzer beeps and LED blinks indicating that the handset is OK. Remote Tester Circuit Diagram "
  •  
    Remote Tester Circuit
Ahmet UZUN

220V LED'li Açık/Kapalı Göstergesi - 0 views

  • Led ile yapılmış bu devre yardımı ile 220V AC ile çalışan cihazların açık/kapalı durumları gözlenebilir. Devredeki R1 direnci 220V için LED seri koruma direncidir. Ledlerin ters yön dayanma gerilimi 5V civarındadır. Negatif gerilim alternaslarında LED'in zarar görmemesi için D2 diyodu ilave edilmiştir.
  •  
    220V LED'li Açık/Kapalı Göstergesi
  •  
    220V LED'li Açık/Kapalı Göstergesi
Ahmet UZUN

çanak antenler kalkmayacak - 0 views

  •  
    "2015 yılında uydu antenleri tamamen kalkıyor, çanak antenler çöpe gidecek haberleri kesinlikle doğru değildir. YAYIN SEÇME HAKKINIZ HER DAİM OLACAKTIR. KABLO TV, İNTERNET TV, YEREL ANTEN, UYDU SİSTEMİ V.B' LERİ SİZİN SEÇİMİNİZDE OLACAKTIR. Çanak antenleriniz, Uydu alıcılarınız ve Televizyonlarınızı kullanmaya devam edeceksiniz! Aksini söyleyenler; doğruları çarpıtıp, kasıtlı yalan söyleyerek, kendilerine piyasa açmaya çalışan fırsatçılardır. Karasal Sayısal (Dijital) TV Yayını Hakkında Açıklayıcı Bilgi: Çanak antenler sökülüp, evinizde bulunan dijital uydu alıcıları ve Televizyonlarınız çöpe atılacak gibi, yalan-yanlış-maksatlı haberler, gazetelerde-internet ortamında boy gösterince; konu ile ilgili açıklama yapmak, sektörün içinde olan bir yurttaş olarak boynumuzun borcu oldu. Gelişen yayıncılık teknolojisinin sonucu birçok Avrupa ülkesinde yıllardır faaliyette olan Karasal Sayısal (Dijital) Yayın sistemine; ülkemizde de geçileceği, aynı böyle tantanalı basın toplantıları ve internet duyuruları ile yaklaşık 4-5 sene önce kamuoyuna açıklanmıştı. Fakat yıllar içinde frekans tahsisi konusu halledilemediği için, bugüne kadar sisteme geçişle ilgili her hangi bir bilgi düne kadar kamuoyuyla paylaşılmamıştı. (Frekans tahsisi konusu; yeni yayın tipinde zurnanın zırt dediği yerdir. Çünkü frekans tahsisinde TV ve RADYO kanallarının hangisinin yayın yapabileceği, hangi frekansı kullanabileceği belirlenmektedir. Ulusal anlamda alınan frekanslar; yayıncılık sektöründe olan TV kanalları için hayati öneme sahiptir. Bu hayati önem sermaye ve güç gruplarının, sözde toplum mühendislerinin iştahını kabartmaktadır. Frekansın kendisi sanal ama getirisi gerçektir. Yani bir şekilde görünmeyen milli servettir. TV-RADYO yayıncılığı konusunda, kaos ve keşmekeşin yaşanmaması için, halkımızın faydasına olacak şekilde;
  •  
    çanak antenler kalkmayacak
Ahmet UZUN

5 Watt rf power devresi (5-Watt Broadband RF Power Amp schematic) - 0 views

  • 5 Watt rf power devresi (5-Watt Broadband RF Power Amp schematic) Devrenin üzerine extra olarak çıkış gücünün olup olmadığını gösteren bir led devreside eklenmiştir..
  •  
    5 Watt rf power devresi (5-Watt Broadband RF Power Amp schematic)
  •  
    5 Watt rf power devresi (5-Watt Broadband RF Power Amp schematic)
Ahmet UZUN

DiSEqC Test Cihazi Devresi (DiSEqC-Tester+ , used ATtiny2313) - 0 views

  • New version of the DiSEqC-Tester using ATtiny2313: Schematic diagram: Orijinal görüntüsünü görmek için buraya tıklayın. 580x345 px. Enlarge DiSEqC-Tester_T2313_rev_A - DiSEqC 1.0 (4 ports), 1.1 (8 porst), 1.2 ("west", "east"). After every 4-th/8-th command - large pause (for protocols 1.0 and 1.1). No large pauses in 1.2-protocol mode. The archive contains some diagrams. Number of port-LEDs may be variable, for example 8 or 10, and depends on type of your DiSEqC-Switch. DiSEqC-Tester+ in Proteus (Designators may mismatch): FileSwap.com : DiSEqC-Tester.zip download free Alternatif Link http://www.mediafire.com/?gf2b9m0jzskmull
  •  
    DiSEqC Test Cihazi Devresi (DiSEqC-Tester+ , used ATtiny2313)
  •  
    DiSEqC Test Cihazi Devresi (DiSEqC-Tester+ , used ATtiny2313)
1 - 12 of 12
Showing 20 items per page