洪嵐峰 發表於 2023-5-2 19:35:14

PIC16F1825

製作18650二十槽充電器需要以下零件:

PIC16F1825 微控制器
20組18650電池座
20個NPN三極管 (例如2N3904)
20個1k歐姆電阻
1個10k歐姆電阻
1個LED指示燈
1個7805穩壓器
1個1N4007二極管
1個220微法電容器
1個16MHz晶振
電源線和連接線
連接板和螺絲

PIC16F1825 的引腳分佈如下:

RA0:3.3V電源輸入
RA1:NC
RA2:NC
RA3:NC
RA4:NC
RA5:NC
RE0:NC
RE1:NC
RE2:NC
VSS:地
OSC1:晶振輸入
OSC2:晶振輸出
RC0:LED指示燈
RC1:NC
RC2:NC
RC3:NC
RC4:NC
RC5:NC
RC6:NC
RC7:NC
VDD:5V電源輸入

基本的充電器程式碼
可以根據您的需要進行修改:


#include <pic16f1825.h>
#include <htc.h>
#define LED_PIN RC0
#define CHG_PIN RA0
#define CHG_THRESHOLD 4.2
#define ADC_CHANNEL 0

void init_adc(void)
{
    ANSELbits.ANS0 = 1;
    ADCON0 = 0b00000001;
    ADCON1 = 0b00000000;
}

unsigned int read_adc(void)
{
    unsigned int result;
    ADCON0bits.GO = 1;
    while (ADCON0bits.GO);
    result = (ADRESH << 8) | ADRESL;
    return result;
}

void init_charger(void)
{
    TRISA0 = 1;
   
LED_PIN = 0;
init_adc();
}

void charge(void)
{
unsigned int adc_value;
float voltage;

adc_value = read_adc();

voltage = (float)adc_value * 5 / 1024;

if (voltage >= CHG_THRESHOLD) {
    CHG_PIN = 0;
    LED_PIN = 0;
}

else {
    CHG_PIN = 1;
    LED_PIN = 1;
}
}


void main(void)
{

init_charger();

while (1) {
    charge();
}
}
頁: [1]
查看完整版本: PIC16F1825