Page 23 of 24
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 24 May 2011, 15:14
by Wind Raider
toto wrote:............ ampon deh kagak nyampe utek saya ............

............... tapi eni wei sukses om entar kayanya bakal oleh2 dari Cirebon ya ...........
salam
Siap pakdhe ... lumayan buat koleksi

Re: Bikin Glow Heater dengan battery Li-Po
Posted: 11 Nov 2013, 13:58
by coyo
rachmatjeny wrote:udah ada yang pernah nyoba pake
IC LM2576/LM2576HV Series
SIMPLE SWITCHER® 3A Step-Down Voltage Regulator
IC ini biasa saya pake kalo mau stepdown yang drastis.. misal dari 24V ke >5V.
kalo pake 7805 pasti panasnya minta ampun.
tapi memang agak mahal.. kalo dibanding 7805 yang bagus harga 1500... tapi ic LM2576 sekitar 25rb.
dan IC ini sering saya pake untuk rangkaian yang membuutuhkan arus tinggi.. sebagai perbandingan
7805+tr jengkol pada arus 2A udah panas.. tapi pakai rangkaian ini adem ayem aja.
karena IC ini switching maka pada ampere tinggi dia lebih tahan. dan yang pasti tegangan jauh lebih stabil dan presisi...
ini skemanya.. bisa adjustable mulai dari VIN s/d 0,5V

gimana para suhu?? mohon masukkannya...
knp ga pake LM2596 aja, cuma sekitar $1 gratis ongkir di ebay tinggal nyambung kabel aja seperti ini:
Features:DC-DC Buck Converter Step Down Module LM2596 Power Supply Output 1.23V-30V
Input voltage: 4V-35V
Output voltage: 1.23V-30V
Input current: 3A(maximum)
Specifications:Conversion efficiency: 92%(highest)
Switching frequency: 150KHz
Output ripple: 30mA(maxmum)
sy punya tp blm pernah dicoba di glow plug, lha wong ga punya pesawat engine hehehe......
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 13 Nov 2013, 23:39
by rachmatjeny
kayaknya.... nih kayaknya loh ya om, gak bisa pake LM2576, bakalan panas icnya
intinya kalo mau dari tegangan lebih dari 1.5V harus di kasih pulsa/PWM
yg dulu saya bikin pake microcontroller pake sistem PWM.
jadi dari micro ngedrive ke FET, untk ke glow, tinggal atur timingnya aja
makanny yg terakhir saya bikin hanya bisa lipo 2cell, karena kalo pake lipo 3cel harus ngerubah timing
makannya juga yg punya pabrikan dari luar, ada seting jumper untuk nentuin brapa sel batre yg di pake
ini code nya, mungkin om coyo mau bikin versi ember eh bascomnya
Code: Select all
/*****************************************************
This program was produced by the
CodeWizardAVR V1.25.7 beta 5 Professional
Automatic Program Generator
© Copyright 1998-2007 Pavel Haiduc, HP InfoTech s.r.l.
http://www.hpinfotech.com
Project :
Version :
Date : 5/17/2010
Author : F4CG
Company : F4CG
Comments:
Chip type : ATtiny13
Clock frequency : 12.000000 MHz
Memory model : Tiny
External SRAM size : 0
Data Stack size : 16
*****************************************************/
#include <tiny13.h>
#include <delay.h>
#define buzzer PORTB.1
#define auto 2
#define manual 3
//eeprom int time_ppm_e;
int time_buzzer,time_ppm,timer;
bit st_on;
// Declare your global variables here
char mode;
void mode_manual(){
if (!PINB.3 && !st_on){
st_on=1; timer=650;
}
if (st_on){
if (timer>0){
TCCR0A=0x83;
OCR0A=10;
timer--;
if (timer<100){buzzer=1;}else{
if (time_buzzer<100)time_buzzer++; else time_buzzer=0;
if (time_buzzer>0 && time_buzzer <5)buzzer=1;else buzzer=0;
}
}
}else {st_on=0;TCCR0A=0x00;OCR0A=0;buzzer=0;}}
void main(void)
{
char i;
// Declare your local variables here
// Crystal Oscillator division factor: 1
#pragma optsize-
CLKPR=0x80;
CLKPR=0x00;
#ifdef _OPTIMIZE_SIZE_
#pragma optsize+
#endif
// Input/Output Ports initialization
// Port B initialization
// Func5=In Func4=In Func3=In Func2=In Func1=In Func0=Out
// State5=T State4=T State3=T State2=T State1=T State0=0
PORTB=0x00;
DDRB=0x01;
// Timer/Counter 0 initialization
// Clock source: System Clock
// Clock value: 11.719 kHz
// Mode: Fast PWM top=OCR0A
// OC0A output: Non-Inverted PWM
// OC0B output: Disconnected
TCCR0A=0x83;//C3=inv
TCCR0B=0x04;
TCNT0=0x00;
OCR0A=10;
OCR0B=0x00;
// External Interrupt(s) initialization
// INT0: Off
// Interrupt on any change on pins PCINT0-5: Off
GIMSK=0x00;
MCUCR=0x00;
// Timer/Counter 0 Interrupt(s) initialization
TIMSK0=0x00;
// Analog Comparator initialization
// Analog Comparator: Off
ACSR=0x80;
ADCSRB=0x00;
DDRB.1=1;
DDRB.3=0;PORTB.3=1;
TCCR0A=0x00;
buzzer=1;
for (i=0;i<100;i++){
if (!PINB.3)break;
delay_ms(10);
}
buzzer=0;
if (!PINB.3)mode=auto;else {for (i=0;i<3;i++){buzzer=~buzzer;delay_ms(500);}mode=manual;}
while (1)
{
if (mode==manual){
mode_manual();
}
if (mode==auto){
if (st_on){
if (timer>0){
TCCR0A=0x83;
OCR0A=10;
timer--;
if (timer<100){buzzer=1;}else{
if (time_buzzer<100)time_buzzer++; else time_buzzer=0;
if (time_buzzer>0 && time_buzzer <5)buzzer=1;else buzzer=0;
}
}
}else {TCCR0A=0x00;OCR0A=0;buzzer=0;}
time_ppm=0;
while (!PINB.3 || time_ppm<1600){time_ppm++;delay_us(10);}
if (time_ppm>1500 && time_ppm<2000 ){
time_ppm=0;
while (PINB.3 || time_ppm< 160){time_ppm++;delay_us(10);} //lo=85;hi=151
if (time_ppm>118 && !st_on){buzzer=1;timer=650;st_on=1;}
if (time_ppm<118 && timer==0){st_on=0;}
if (time_ppm>100 && !st_on){;}
}
}
};
}
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 14 Nov 2013, 08:02
by christoffel
saya sering pake lm2576/lm2596 (cuman beda spec aja) tapi yg versi HV (input voltage bisa sampai 60V). unit seway saya pake ini juga.
untuk step down dari 60 volt ke 5 volt dg beban 1 ampere, unit sama sekali tidak panas.
sudah pernah coba untuk glow heater juga dan oke2 saja. arus glow heather berkisar antara 1.5 sampai 2.5 ampere.
module bisa juga diparalel (dengan load balancer) supaya dapat ampere lebih besar.
IC ini memang khusus buat switching regulator dan menggunakan PWM juga ...
daripada beli IC nya, mendingan sekalian beli modulnya... tinggal pake aja ...
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 14 Nov 2013, 08:49
by coyo
christoffel wrote:saya sering pake lm2576/lm2596 (cuman beda spec aja) tapi yg versi HV (input voltage bisa sampai 60V). unit seway saya pake ini juga.
untuk step down dari 60 volt ke 5 volt dg beban 1 ampere, unit sama sekali tidak panas.
sudah pernah coba untuk glow heater juga dan oke2 saja. arus glow heather berkisar antara 1.5 sampai 2.5 ampere.
module bisa juga diparalel (dengan load balancer) supaya dapat ampere lebih besar.
IC ini memang khusus buat switching regulator dan menggunakan PWM juga ...
daripada beli IC nya, mendingan sekalian beli modulnya... tinggal pake aja ...
SETUJU !!!!!! sy beli modulnya cuma sekitar $1 gratis ongkir pula dr ebay
klo butuh sampe 5A sy pake modul ini (pake IC XL4005):
5A 5V-32V to 0.8V-30V Buck Converter Lithium Battery Power Supply Module
Features:Input voltage: 5V-32V
Output voltage: 0.8V-30V
Output current: adjustable maximum 5A
Switching frequency:300KHz
Conversion efficiency:95%(the highest)
Module Properties: non-isolated constant current and voltage module
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 14 Nov 2013, 09:02
by coyo
rachmatjeny wrote:kayaknya.... nih kayaknya loh ya om, gak bisa pake LM2576, bakalan panas icnya
intinya kalo mau dari tegangan lebih dari 1.5V harus di kasih pulsa/PWM
yg dulu saya bikin pake microcontroller pake sistem PWM.
jadi dari micro ngedrive ke FET, untk ke glow, tinggal atur timingnya aja
makanny yg terakhir saya bikin hanya bisa lipo 2cell, karena kalo pake lipo 3cel harus ngerubah timing
makannya juga yg punya pabrikan dari luar, ada seting jumper untuk nentuin brapa sel batre yg di pake
ini code nya, mungkin om coyo mau bikin versi ember eh bascomnya
Code: Select all
/*****************************************************
This program was produced by the
CodeWizardAVR V1.25.7 beta 5 Professional
Automatic Program Generator
© Copyright 1998-2007 Pavel Haiduc, HP InfoTech s.r.l.
http://www.hpinfotech.com
Project :
Version :
Date : 5/17/2010
Author : F4CG
Company : F4CG
Comments:
Chip type : ATtiny13
Clock frequency : 12.000000 MHz
Memory model : Tiny
External SRAM size : 0
Data Stack size : 16
*****************************************************/
#include <tiny13.h>
#include <delay.h>
#define buzzer PORTB.1
#define auto 2
#define manual 3
//eeprom int time_ppm_e;
int time_buzzer,time_ppm,timer;
bit st_on;
// Declare your global variables here
char mode;
void mode_manual(){
if (!PINB.3 && !st_on){
st_on=1; timer=650;
}
if (st_on){
if (timer>0){
TCCR0A=0x83;
OCR0A=10;
timer--;
if (timer<100){buzzer=1;}else{
if (time_buzzer<100)time_buzzer++; else time_buzzer=0;
if (time_buzzer>0 && time_buzzer <5)buzzer=1;else buzzer=0;
}
}
}else {st_on=0;TCCR0A=0x00;OCR0A=0;buzzer=0;}}
void main(void)
{
char i;
// Declare your local variables here
// Crystal Oscillator division factor: 1
#pragma optsize-
CLKPR=0x80;
CLKPR=0x00;
#ifdef _OPTIMIZE_SIZE_
#pragma optsize+
#endif
// Input/Output Ports initialization
// Port B initialization
// Func5=In Func4=In Func3=In Func2=In Func1=In Func0=Out
// State5=T State4=T State3=T State2=T State1=T State0=0
PORTB=0x00;
DDRB=0x01;
// Timer/Counter 0 initialization
// Clock source: System Clock
// Clock value: 11.719 kHz
// Mode: Fast PWM top=OCR0A
// OC0A output: Non-Inverted PWM
// OC0B output: Disconnected
TCCR0A=0x83;//C3=inv
TCCR0B=0x04;
TCNT0=0x00;
OCR0A=10;
OCR0B=0x00;
// External Interrupt(s) initialization
// INT0: Off
// Interrupt on any change on pins PCINT0-5: Off
GIMSK=0x00;
MCUCR=0x00;
// Timer/Counter 0 Interrupt(s) initialization
TIMSK0=0x00;
// Analog Comparator initialization
// Analog Comparator: Off
ACSR=0x80;
ADCSRB=0x00;
DDRB.1=1;
DDRB.3=0;PORTB.3=1;
TCCR0A=0x00;
buzzer=1;
for (i=0;i<100;i++){
if (!PINB.3)break;
delay_ms(10);
}
buzzer=0;
if (!PINB.3)mode=auto;else {for (i=0;i<3;i++){buzzer=~buzzer;delay_ms(500);}mode=manual;}
while (1)
{
if (mode==manual){
mode_manual();
}
if (mode==auto){
if (st_on){
if (timer>0){
TCCR0A=0x83;
OCR0A=10;
timer--;
if (timer<100){buzzer=1;}else{
if (time_buzzer<100)time_buzzer++; else time_buzzer=0;
if (time_buzzer>0 && time_buzzer <5)buzzer=1;else buzzer=0;
}
}
}else {TCCR0A=0x00;OCR0A=0;buzzer=0;}
time_ppm=0;
while (!PINB.3 || time_ppm<1600){time_ppm++;delay_us(10);}
if (time_ppm>1500 && time_ppm<2000 ){
time_ppm=0;
while (PINB.3 || time_ppm< 160){time_ppm++;delay_us(10);} //lo=85;hi=151
if (time_ppm>118 && !st_on){buzzer=1;timer=650;st_on=1;}
if (time_ppm<118 && timer==0){st_on=0;}
if (time_ppm>100 && !st_on){;}
}
}
};
}
Thanks Suhu RJ, ini juga lg bikin versi bascom - sekalian pake pwm 10bits, adjustable on timer, bisa on/off dgn membaca posisi stik throttle, adjustable glow output, auto voltage (lipo 1~3s) hehehe......
simulasi kemarin dah ok, hari ini lanjut bikin prototipe
mudah2 hasilnya sesuai yg diharapkan
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 14 Nov 2013, 18:19
by rachmatjeny
christoffel wrote:saya sering pake lm2576/lm2596 (cuman beda spec aja) tapi yg versi HV (input voltage bisa sampai 60V). unit seway saya pake ini juga.
untuk step down dari 60 volt ke 5 volt dg beban 1 ampere, unit sama sekali tidak panas.
sudah pernah coba untuk glow heater juga dan oke2 saja. arus glow heather berkisar antara 1.5 sampai 2.5 ampere.
module bisa juga diparalel (dengan load balancer) supaya dapat ampere lebih besar.
IC ini memang khusus buat switching regulator dan menggunakan PWM juga ...
daripada beli IC nya, mendingan sekalian beli modulnya... tinggal pake aja ...
lilitannya gak panas suhu?
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 14 Nov 2013, 21:03
by christoffel
adem ayem aja suhu ...
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 08 Jan 2014, 08:46
by gatotkaca
coyo wrote:SETUJU !!!!!! sy beli modulnya cuma sekitar $1 gratis ongkir pula dr ebay
klo butuh sampe 5A sy pake modul ini (pake IC XL4005):
5A 5V-32V to 0.8V-30V Buck Converter Lithium Battery Power Supply Module
Features:Input voltage: 5V-32V
Output voltage: 0.8V-30V
Output current: adjustable maximum 5A
Switching frequency:300KHz
Conversion efficiency:95%(the highest)
Module Properties: non-isolated constant current and voltage module
Mohon maaf Oom, boleh tahu kalau pake ini cara ngatur output voltage-nya bagaimana?
Saya sudah lama punya tapi hasil output nya ngga bisa di ubah (sesuai dengan voltage inputnya), jadi sampai sekarang nga diapa-apain.
Apakah memang modulnya yang rusak ya?
Re: Glow Heater dengan Li-Po ( merged thoha n rahmatjeni )
Posted: 08 Jan 2014, 10:19
by christoffel
yg vr nya satu, itu untuk rubah tegangan output.
yg vr nya 2, satunya biasanya untuk atur arus nya, jadi bisa CV CC. ini bisa untuk nge-charge lipo ...