Rev0

Dependencies:   PID QEI-Intruptinmode-set SB1602E mbed

Fork of PreHeater-Rev2 by Kazu Zamasu

プリヒータ基板のファームウェアです。 Rev2基板用ですので、温度センサーなどが変更になっています。

This is Pre Heater device firmware. This firmware is Rev2 PCB design.

main.cpp

Committer:
Hapi_Tech
Date:
2015-07-28
Revision:
1:1440321bc326
Parent:
0:b2cea429ec0b
Child:
2:6315824f8a29

File content as of revision 1:1440321bc326:

/*The MIT License (MIT)

Copyright (c) <2015> <Kazumichi Aoki>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/



#include "mbed.h"
#include "PID.h"
#include "math.h"
#include "SB1602E.h"
#include "QEI.h"
#include "rtos.h"
//GPIO initilaize
AnalogIn THAI(dp4);
PwmOut   out(dp18);
DigitalOut ledR(dp17),ledG(dp25),ledB(dp26);
InterruptIn RunPB(dp10);
Serial pc(dp16, dp15); // tx, rx


/* PID constant initialize Kc, Ti, Td, interval */
#define P 1.5 //propotional band
#define I 50.0 //Integral
#define D 0.5 //Devide
#define RATE 0.1 //update time sec
//#define InitialSP 45.0 // Boot Setpoint initial temeprature
PID TIC(P, I, D, RATE);

/*LCD I2C pin initialize */
char *init_massage = "Hello!";
SB1602E lcd(dp5, dp27, init_massage);  //  SDA, SCL
/*QEI initialize */
#define ROTATE_PER_REVOLUTIONS  24
QEI wheel(dp11, dp13, NC, PullUp, ROTATE_PER_REVOLUTIONS, QEI::X2_ENCODING);

//Initial
float temp_sv_input, waittime,OV_LL,ticout,qei,Bias;
bool Run(false);
double temp_pv,temp_cal;
int rtostime;
int encPulseCnt = 0;
int encPulses = 0;
int end_getPulses_old = 0;

/*PB control*/
void runmode()
{
    Run = !Run;
}

void cal_temp(void const *argument)
{
    while(1) {
        /*input for change to 0 to 100% range by 30C to 120C */
        /*Temperature setpoint low high range */
#define RangeSPL    45.0 //Celcius low side temperature 
#define EncoderDiv  25.0
#define RangeSPH    100.0 //Celcius high side temperature

        encPulses = wheel.getPulses();
        if(end_getPulses_old != encPulses)
        {
            encPulseCnt = encPulseCnt + (encPulses - end_getPulses_old);

            if( encPulseCnt < 0 )
            {
                encPulseCnt = 0;
            }
            if( encPulseCnt > ( (RangeSPH-RangeSPL) * EncoderDiv) )
            {
                encPulseCnt = (RangeSPH-RangeSPL) * EncoderDiv;
            }
        }
        end_getPulses_old = encPulses;

        
        temp_sv_input = encPulseCnt / EncoderDiv + RangeSPL;

        /*six order polynomial calculation value
        Thermister pull up resiter 560R
        Thermister B value 3380K
        Thermister Resistance 10K ohm at 25C
        This NTC is NCP18XH103F03RB muRata
        */
        //temp_cal = THAI.read() * 3.3;
        //temp_pv =-0.7964*pow(temp_cal,6.0) - 2.5431*pow(temp_cal,5.0) +63.605*pow(temp_cal,4.0) - 274.1*pow(temp_cal,3.0) + 522.57*pow(temp_cal,2.0) - 539.26*temp_cal + 405.76;
        
        /*LM26LVCISDX-115  Factory Preset Temperature Switch and Temperature Sensor Gain3 115C trip sensor calculation value.*/
        temp_cal = THAI.read() * 3300;
        temp_pv = -0.00000000007*pow(temp_cal,3.0)-0.000002*pow(temp_cal,2.0)-0.091*temp_cal+201.5;

        /*LCD Display section */
        /*LCD Display section */
        lcd.printf(0,0, "SP %.1f", temp_sv_input);
        lcd.printf(0,1, "PV %.1f\n", temp_pv);
        //lcd.printf(1, "OUT %.2f", out.read() * 100);
        //lcd.printf(1, "PB %s\n", Run);
        printf("\033[1;1H");
        printf("OUT %.6f", out.read() * 100);
        printf("\033[1;20H");
        printf("PB %s\n", Run);
        printf("\033[2;1H");
        printf("PV %.6f\n", temp_pv);
        printf("\033[2;20H");
        printf("SP %.6f", temp_sv_input);
        printf("\033[3;1H");
        printf("PV %.6f\n", THAI.read());
        /*Tenperature indicater */
        /* 1.5C high temperature */
        if (Run == true) {
            if ((temp_pv - temp_sv_input) >= 1.5) {
                ledR = 0;
                ledG = 1;
                ledB = 1;
                /* 1.5C low temperature */
            } else if ((temp_sv_input - temp_pv ) >= 1.5 ) {
                ledR = 1;
                ledG = 1;
                ledB = 0;
            } else {
                /* control green */
                ledR = 1;
                ledG = 0;
                ledB = 1;
            }
        } else {
            ledR = 1;
            ledG = 1;
            ledB = 1;
        }
        Thread::wait(rtostime * 1);
    }
}


int main()
{
    RunPB.mode(PullDown);
#define LCDCont 0x32 //LCD contrast set from 00 to 3f 64resolution defult set is 32step
    lcd.contrast(LCDCont);
    out.period(0.02);
    RunPB.rise(&runmode);
    Thread thread(cal_temp);
    rtostime = RATE * 1000;
    while (1) {
        /*PID control*/
#define SV_LL 0.0 //PID setpoint % value for lo limit
#define SV_HL 100.0 //PID setpoint % value for high limit
        TIC.setInputLimits(SV_LL, SV_HL);
#define OV_LL 0.0 //PID calcurate output value 0.0 = 0%
#define OV_HL 100.0 //PID calcurate output value 1.0 = 100%
        if (Run == true) {
            TIC.setOutputLimits(OV_LL, OV_HL);
            TIC.setSetPoint(temp_sv_input);
            TIC.setProcessValue(temp_pv);
            TIC.setBias(Bias); //control output bias
            TIC.setMode(1);
            out = TIC.compute() /100;
            TIC.setInterval(RATE);
        } else if (Run == false) {
            TIC.setMode(0);
            TIC.reset();
            out = 0.0;
        }
        Thread::wait(rtostime);

    }
}