Могу ли я временно отключить получение данных Arduino Serial? - PullRequest
0 голосов
/ 31 августа 2018

Я работаю над проектом и столкнулся с некоторыми проблемами.

Я использую датчик температуры DHT11 , Arduino Uno и TFT ЖК-дисплей 2,2-дюймовой модели ITDB02-2.2 .

То, что я хочу, чтобы мой проект, - это использование 2 режимов работы для датчика, который я могу выбрать с клавиатуры в начале программы (тот, который является нормальным, и тот, который будет использоваться в особых случаях) (поэтому я нужна последовательная связь).

Я заметил, что экран не работает, если я начинаю последовательную связь с любой скоростью, поэтому я использовал Arduino Serial.begin(9600) и Serial.end() для части выбора режима программы.

ПРОБЛЕМА: Мой Arduino все еще отправляет данные через последовательный порт, даже если я завершил последовательную связь, и выглядит так: enter image description here

Я обнаружил, что функция Serial.end() не отключает последовательную связь, а только скорость связи. Мне любопытно, если у вас есть идея, которую я могу использовать, чтобы избавиться от лишних данных и пренебречь ими до того, как компьютер их получит.

Я застрял. Я думал, что прерывания будут решением, но это не так, как я исследовал в Интернете.

Мой код ARDUINO:

#include <SimpleDHT.h>
#include <UTFT.h>

UTFT myGLCD(ITDB22,A5,A4,A3,A2);
SimpleDHT11 dht11;

// Declare which fonts we will be using
extern uint8_t BigFont[];
//dht sensor data pin
int dataPinSensor1 = 12;
char mode;
int del;

void setup()
{
    Serial.begin(9600);
    Serial.print("Select functioning mode");
    mode=SensorModeSelect(mode);
    Serial.end();
    pinMode(12, INPUT);
}

void loop()
{
    if(mode=='1') {
        FirstFuncMode(dataPinSensor1);
    }
    if(mode=='2') {
        SecondFuncMode(dataPinSensor1,del);
    }
    delay(10);
}

char SensorModeSelect(char in)
{
    char mode='0';
    while(mode=='0') {
        if(Serial.available() > 0) {
            mode=Serial.read();
        }
    }
    if (mode == '1') {
        Serial.print("\nMOD1 SELECTED: press t key to aquire data \n");
    }
    if (mode == '2') {
        Serial.print("\nMOD2 SELECTED: press q if you want to quit auto mode \n");
        Serial.print("Select the data aquisition period(not smaller than 1 second) \n");
    }
    return mode;
}

int DataAqPeriod()
{
    int del=0;
    while(del==0) {
        while(Serial.available() > 0) {
            //Get char and convert to int
            char a = Serial.read();
            int c = a-48;
            del *= 10;
            del += c;
            delay(10);
        }
    }
    del*=1000;
    return del;
}

void FirstFuncMode(int dataPinSensor1)
{
    byte temperature = 0;
    byte humidity = 0;
    int err = SimpleDHTErrSuccess;
    bool DispCond=false;
    Serial.begin(9600);
    delay(1500);
    if (Serial.read() == 't' ) {
        DispCond=true;
        //read temperature and compare it with an error value
        if((err = dht11.read(dataPinSensor1, &temperature, &humidity, NULL)) != SimpleDHTErrSuccess) {
            Serial.print("unreliable measurement or unselected functioning mode");
        }
        byte f = temperature * 1.8 + 32;
        Serial.print((int)temperature);
        Serial.print(" *C, ");
        Serial.print((int)f);
        Serial.print(" *F, ");
        Serial.print((int)humidity);
        Serial.println(" H humidity");
        delay(1500);
    }

    Serial.end();
    if(DispCond==true) {
        //Setup the LCD
        myGLCD.InitLCD();
        myGLCD.setFont(BigFont);
        //print value on LCD
        displayNoInit((int)temperature,(int)humidity);
    }
}

void SecondFuncMode(int dataPinSensor1,int del)
{
    bool q=false;
    byte temperature = 0;
    byte humidity = 0;
    int err = SimpleDHTErrSuccess;
    Serial.begin(9600);
    del=DataAqPeriod();
    Serial.end();
    //Setup the LCD
    myGLCD.InitLCD();
    myGLCD.setFont(BigFont);

    while(q==false) {
        Serial.begin(9600);
        //read temperature and compare it with an error value
        if((err = dht11.read(dataPinSensor1, &temperature, &humidity, NULL)) != SimpleDHTErrSuccess) {
            Serial.print("unreliable measurement or unselected functioning mode \n");
        }
        float f = temperature * 1.8 + 32;
        Serial.print((int)temperature);
        Serial.print(" *C, ");
        Serial.print((int)f);
        Serial.print(" *F, ");
        Serial.print((int)humidity);
        Serial.println(" H humidity");
        delay(del);
        if(Serial.read() == 'q')
            q=true;
        Serial.end();
        displayNoInit((int)temperature,(int)humidity);
        delay(10);
    }
}

void displayNoInit(int temperature,int humidity)
{
    //effective data display
    myGLCD.clrScr();
    myGLCD.setColor(255, 255, 0);
    myGLCD.setBackColor(10,10,10);
    myGLCD.print(" Temperature ", CENTER, 10);
    myGLCD.setColor(254, 254, 254);
    myGLCD.printNumI(temperature, CENTER, 45);
    myGLCD.setColor(255, 255, 0);
    myGLCD.print("C ", RIGHT, 45);
    myGLCD.print("Relative Hum.", CENTER, 90);
    myGLCD.setColor(204, 245, 250);
    myGLCD.printNumI(humidity, CENTER, 120);
    myGLCD.print("%", RIGHT, 120);
}

1 Ответ

0 голосов
/ 31 августа 2018

Вы правы в определении, что Serial.end() не отключает последовательный монитор, только прерывания. После вызова Serial.end() вы можете отключить последовательный монитор следующим образом.

#include <avr/io.h>

// Save status register, disable interrupts
uint8_t oldSREG = SREG;
cli();

// Disable TX and RX    
cbi(UCSRB, RXEN);
cbi(UCSRB, TXEN);

// Disable RX ISR
cbi(UCSRB, RXCIE);

// Flush the internal buffer
Serial.flush();

// Restore status register
SREG = oldSREG; 
...