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 uzzalpic

  1. U

    [SOLVED] [PIC] Need help for PIC12F675 Based 12V battery charger

    Hi swapan. I used this code. It's turning off the relay for some times but it is not a permanent solution. In my original circuit relay will be off when the battery is fully charged and remains off until the circuit restart. Any idea to make like my original circuit.
  2. U

    [SOLVED] [PIC] Need help for PIC12F675 Based 12V battery charger

    Hi Brian, Is there any way that will stop the relay after the full charged is complete?
  3. U

    [SOLVED] [PIC] Need help for PIC12F675 Based 12V battery charger

    I shared my new code. Now low battery led working fine, charging also working fine but one problem now I faced, that is, when the battery charge is full, the relay chattering. But when the battery charge is fully charged, the relay will off and charge LED will On. So what's wrong in my code? Plz...
  4. U

    [SOLVED] [PIC] Need help for PIC12F675 Based 12V battery charger

    I collect this circuit from my local market. I want to write code like this circuit so that is work like that. Now I will say how this circuit works. This circuit works in two mode: A- When Circuit connected with transformer 1. When the circuit is run, the charging LED will blink three times...
  5. U

    [SOLVED] [PIC] Need help for PIC12F675 Based 12V battery charger

    Hi all, I am trying to write code for a 12V battery charger used PIC12F675. Its working for charging and full charged but not working for low battery. I giving my project code, schematic and fuse in attachment. Please help me about this. https://imgbox.com/K6Q5Xa7c https://imgbox.com/2zuvEODA...
  6. U

    Need some help for pic12f675

    Hi, I need some help for my code. Plz help me .... #define ON 1 #define OFF 0 sbit red_led at GP4_bit; sbit green_led at GP5_bit; sbit yellow_led1 at GP1_bit; sbit yellow_led2 at GP2_bit; unsigned char led_blink = 0; unsigned int adc_value; void delay_start() { green_led = ON...
  7. U

    [PIC] Need help for pic12f675

    Not working properly. I want when main voltage will under 150v or over 240v then red led glow as hi or low volt if main voltage stay in 151v to 239v green led will glow .
  8. U

    [PIC] Need help for pic12f675

    Thanks boss, Its working....... Now I want to add another red led for high volt and low volt signal. Suppose main line volt under 150v red led glow as low volt signal and over 240v red led glow as high volt signal. when red led will glow yellow led and green led will off and when main volt come...
  9. U

    [PIC] Need help for pic12f675

    when unpressed switch yellow led is blinking 3 min and then green ledglowing, its fine but when I pressed switch all light stay off. I want when I pressed switch yellow led blinking 10 sec then green led will glow and yellow will off. please check this code
  10. U

    [PIC] Need help for pic12f675

    sbit sw at GP3_bit; sbit led_g at GP4_bit; sbit led_y at GP5_bit; void main() { GPIO = 0x0; TRISIO = 0x8; do { if (sw == 0) { led_g = 0; led_y = 1; delay_ms(10000); // 10 second delay led_y = 0; led_g = 1; } while (sw == 0); led_y = 1; led_g = 0; delay_ms(180000); // 3...
  11. U

    [PIC] Need help for pic12f675

    Here is my project simulation and code. plez check it.
  12. U

    [PIC] Need help for pic12f675

    can you give me that code .
  13. U

    [PIC] Need help for pic12f675

    Here is my code. Everything is ok here but yellow led not blinking. Which code i can add with my code for blinking yellow led. #define Delay_SWITCH GP3_bit #define LED_Green GP4_bit #define LED_Yellow GP5_bit #define PRESSED 0 #define UNPRESSED 1 void main() { CMCON = 0x07; ANSEL = 0b000000...
  14. U

    [PIC] Need help for pic12f675

    I used mikroc compiler but here is the code problem with me. i dont know which code use for this circuit.

Part and Inventory Search

Back
Top