MH K8 firmware with HV control.

Dependencies:   mbed NOKIA_5110

Fork of muonhunter-K8 by Oliver Keller

detection.cpp

Committer:
mihaly
Date:
2019-04-22
Revision:
11:5a5f16e09f10
Parent:
7:6a0958c2be7e

File content as of revision 11:5a5f16e09f10:

class Detection
{
public:
    int channel;
    int time;
    float temp;
    float pressure;

    Detection(int channel_, int time_) {
        channel = channel_;
        time = time_;
        temp = 0;
        pressure = 0;
    }
};