bonsoir tous le monde,
J'essaye de calculer le cosinus d'un angle,(ce dernier varie de 0 à 2pi) en MikroC, le résultat est affiché dans un Afficheur LCD, voici le code que j'ai utilisé:
// Configuration de l'afficheur LCD
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;
char txt1[] = "cos (angle)= ";
char buffer1[8];
float x,PI=3.14;
unsigned int i;
void main()
{
ANSEL = 0;
ANSELH = 0;
C1ON_bit = 0;
C2ON_bit = 0;
Lcd_Init();
Lcd_Cmd(_LCD_CLEAR);
Lcd_Cmd(_LCD_CURSOR_OFF);
LCD_Out(1,1,txt1);
// Partie opérations
while(1)
{
for(i=0;i<=2*pi;i=i+pi)
{
x=cos(i);
IntToStr(x,buffer1);
LCD_Out(2,2,buffer1);
Delay_ms(1000);
}
}
}
le problème est que deux valeurs apparaissent: le zéro et le un, malgré que x est définie comme étant un réel, donc je ne sais pas où est le problème?
-----