Robofun 機器人論壇

標題: 資料型態轉換的問題 [打印本頁]

作者: vincent8034    時間: 2015-2-11 16:36
標題: 資料型態轉換的問題
先上傳程式給各位看一下:

#include <Wire.h>
#include <LiquidCrystal_I2C.h>
int pushButton = 7;
int ledpin = 8;
int x = 0;
int t;


LiquidCrystal_I2C lcd(0x27, 16, 2);


void setup()
{
        pinMode(pushButton, INPUT);
        pinMode(ledpin, OUTPUT);
        

        lcd.begin();
        lcd.backlight();
        lcd.setCursor(0,0);
       
char s[] = {'b1','b2'};
int t = atoi(s);


}


void loop()
{
  char a1,a2,b1,b2;
  b1='8';
  b2='1';
  lcd.setCursor(1,1);
  lcd.write(b1);
  lcd.setCursor(0,1);
  lcd.write(b2);
  int i;
  i = digitalRead(pushButton);
  if(i == HIGH)
  {
    x++;
    a1=x%10;
    a2=(x/10)%10;
    lcd.setCursor(1,0);
    lcd.write(a1+'0');
    lcd.setCursor(0,0);
    lcd.write(a2+'0');




    if (x>=20) x=0;
  }
if( x >= t)
{
   digitalWrite(ledpin, HIGH);
}
else
{
   digitalWrite(ledpin, LOW);
}
}






程式目的:
按下 pushButton LCD會顯示+1,到>=20會歸零,但我想加入一個指定數值"18",當按鈕++到指定數值時led會亮燈


但led並不會亮,我想事資料型態轉換的問題,請問這要如何改??
謝謝~~~




歡迎光臨 Robofun 機器人論壇 (https://robofun.net/forum/) Powered by Discuz! X3.2