Salut!!
Je suis en plein projet: je dois faire un chargeur/dechargeur de batteries permettant d'enregistrer sur carte sd un bilan de la batterie testée. Je bloque sur le capteur de courant ACS712: je ne comprend pas pourquoi, mais il m'affiche un courant variable (via le LCD)... Quelqu'un peut m'expliquer mon erreur et comment faire pour bien afficher le bon courant svp?
Je poste mon code, si quelqu'un peut m'aider?
Précision: je code sur Mikroeletronika, et mon micro controleur est un PIC18F4520
Code:// LCD module connections sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit; sbit LCD_D4 at RB0_bit; sbit LCD_D5 at RB1_bit; sbit LCD_D6 at RB2_bit; sbit LCD_D7 at RB3_bit; sbit LCD_RS_Direction at TRISB4_bit; sbit LCD_EN_Direction at TRISB5_bit; sbit LCD_D4_Direction at TRISB0_bit; sbit LCD_D5_Direction at TRISB1_bit; sbit LCD_D6_Direction at TRISB2_bit; sbit LCD_D7_Direction at TRISB3_bit; // End LCD module connections unsigned int ADC_Value; unsigned long temp ; unsigned long tens; unsigned char ch; short neg=0; main(){ ADCON1 = 0b00001010; TRISA = 0xFF; TRISB=0b11000000; // PORTB pins are all output TRISC=0b10010001; RC1_bit=1; RC2_bit=0; Lcd_Init(); Lcd_Cmd(_LCD_CLEAR); // CLEAR display Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off Lcd_Out(1,1,message); do{ neg=0; //Mesure de courant ADC_Value = ADC_Read(0); Delay_ms(5); temp=ADC_Value*5020; temp=temp/1023; temp=temp*5.4054; if (temp<0) { temp = -temp; neg = 1; } Lcd_Out (1,1,"Courant: ") ; if (neg ==1) Lcd_Chr(1,9,45); else Lcd_Chr(1,9,43); ch=temp/1000 ; Lcd_Chr(1,11,48+ch); //+48 pour le code ASCII Lcd_Chr_CP(','); ch = (temp/ 100) % 10; Lcd_Chr_CP(48+ch); ch = (temp / 10) % 10; Lcd_Chr_CP(48+ch); Lcd_Chr(1,16,'A'); Delay_ms(1000); } while(1); }
-----