在Arduino中划分两个整数

时间:2012-12-09 22:00:22

标签: c++ arduino

我试图划分两个整数值并存储为浮点数。

void setup()
{
    lcd.begin(16, 2);

    int l1 = 5;
    int l2 = 15;
    float test = 0;
    test = (float)l1 / (float)l2;

    lcd.clear();
    lcd.setCursor(0, 0);
    lcd.print(test);
}

由于某种原因,我预计相当明显,我似乎无法存储和显示正确的值。 'test'变量始终设置为0。

如何转换整数值?

2 个答案:

答案 0 :(得分:5)

它必须是您的LCD打印程序,因此您使用的模型是正确的。

我使用serial printing代替LCD在Arduino上试用了它。预期结果显示在串行监视器中(由菜单工具 - > 串行监视器启动),完整的代码示例如下:

Start...

5
15
0.33
0.33333334922790

最后一个结果行确认它是4 byte float,有7-8位有效数字。

完整的代码示例

/********************************************************************************
 * Test out for Stack Overflow question "Divide two integers in Arduino",       *
 * <http://stackoverflow.com/questions/13792302/divide-two-integers-in-arduino> *
 *                                                                              *
 ********************************************************************************/

// The setup routine runs once when you press reset:
void setup() {
    // Initialize serial communication at 9600 bits per second:
    Serial.begin(9600);

    //The question part, modified for serial print instead of LCD.
    {
        int l1 = 5;
        int l2 = 15;
        float test = 0;
        test = (float)l1 / (float)l2;

        Serial.println("Start...");
        Serial.println("");
        Serial.println(l1);
        Serial.println(l2);
        Serial.println(test);
        Serial.println(test, 14);
    }

} //setup()

void loop()
{
}

答案 1 :(得分:3)

lcd.print不知道如何打印float,因此您最终会打印整数。