MH K8 firmware with HV control.

Dependencies:   mbed NOKIA_5110

Fork of muonhunter-K8 by Oliver Keller

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers detection.cpp Source File

detection.cpp

00001 class Detection
00002 {
00003 public:
00004     int channel;
00005     int time;
00006     float temp;
00007     float pressure;
00008 
00009     Detection(int channel_, int time_) {
00010         channel = channel_;
00011         time = time_;
00012         temp = 0;
00013         pressure = 0;
00014     }
00015 };