0

LCD画面の1行目に時計を表示し、2行目に「HelloWorld」というテキストを表示するコードがあります。

#include <LiquidCrystal.h>
int x=0;
int a=0;
int y=0;
int z=0;
int initialHours = 14;//set this to whatever
int initialMins = 37;
int initialSecs = 45 + 11;

int secspassed()
{
    x = initialHours*3600;
    x = x+(initialMins*60);
    x = x+initialSecs;
    x = x+(millis()/1000);
    return x;
}

int hours()
{
    y = secspassed();
    y = y/3600;
    y = y%24;
    return y;
}

int mins()
{
    z = secspassed();
    z = z/60;
    z = z%60;
    return z;
}

int secs()
{
    a = secspassed();
    a = a%60;
    return a;
}

LiquidCrystal lcd(8, 9, 4, 5, 6, 7);

void setup(){
    lcd.print("load...");
    delay(1000);
    lcd.begin(16, 2);
    lcd.setCursor(0, 1);
    lcd.print("Hello world");
}

void loop(){
    digitalClockDisplay();
}

void printDigits(byte digits){
    if(digits < 10)
        lcd.print('0');
    lcd.print(digits);
}

char sep()
{
    x = millis()/1000;
    if(x%2==0)
    {
        lcd.print(":");
    }
    else {
        lcd.print(" ");
    }
}

void digitalClockDisplay(){
    lcd.setCursor(0,0);
    printDigits(
    hours());
    sep();
    printDigits(mins());
    sep();
    printDigits(secs());
}

以下を印刷する代わりに

12:35:15
Hello World

代わりにこれを出力します:

253:255:243
Hello World

なんで?

ところで、Timeライブラリは使いたくありません。

4

2 に答える 2

3

The code is overflowing the capacity of an int [for arduino, that value is +/- 32767] here:

int secspassed()
{
  x = initialHours*3600;
  x = x+(initialMins*60);

At this point x should be:

14 * 3600 * 60 = 3024000

which is much bigger than the +32767 value an int can hold, and the overflow is dropped, leaving bits that represent a number of no relevance.

Should also cleanup calling the print routine with an int and casting it to a byte.

于 2012-08-31T17:41:35.937 に答える
1

ロールオーバーなどを使って、なぜそれが悪い考えになるのかを理解しました。興味のある人のために更新されたコードは次のとおりです。

#include <LiquidCrystal.h>

int second=0, minute=0, hour=0;
int x=0;

LiquidCrystal lcd(8, 9, 4, 5, 6, 7);

void setup(){
    lcd.print("load...");
    delay(1000);
    lcd.begin(16, 2);
    lcd.setCursor(0, 1);
    lcd.print("Hello, world ");
}

void loop(){
    static unsigned long lastTick = 0;
    if (millis() - lastTick >= 1000) {
        lastTick = millis();
        second++;
    }

    // Move forward one minute every 60 seconds
    if (second >= 60) {
        minute++;
        second = 0; // Reset seconds to zero
    }

    // Move forward one hour every 60 minutes
    if (minute >=60) {
        hour++;
        minute = 0; // Reset minutes to zero
    }

    if (hour >=24) {
        hour=0;
        minute = 0; // Reset minutes to zero
    }
    digitalClockDisplay();
}

void printDigits(byte digits){
    if(digits < 10)
        lcd.print('0');
    lcd.print(digits);
}

char sep()
{
    x = millis()/500;
    if(x%2==0)
    {
        lcd.print(":");
    }
    else{
        lcd.print(" ");
    }
}

void digitalClockDisplay(){
    lcd.setCursor(0,0);
    printDigits(hour);
    sep();
    printDigits(minute);
    sep();
    printDigits(second);
}

楽しむ!

PS:更新されたコードについては、私のブログにアクセスしてください。

于 2012-08-31T18:45:40.433 に答える