MH K8 firmware with HV control.

Dependencies:   mbed NOKIA_5110

Fork of muonhunter-K8 by Oliver Keller

Committer:
mihaly
Date:
Mon Apr 22 14:00:08 2019 +0000
Revision:
11:5a5f16e09f10
Parent:
7:6a0958c2be7e
K8 fimrware initial

Who changed what in which revision?

UserRevisionLine numberNew contents of line
OliverKeller 7:6a0958c2be7e 1 class Detection
OliverKeller 7:6a0958c2be7e 2 {
OliverKeller 7:6a0958c2be7e 3 public:
mva111 0:52895a475820 4 int channel;
OliverKeller 7:6a0958c2be7e 5 int time;
mva111 0:52895a475820 6 float temp;
mva111 0:52895a475820 7 float pressure;
OliverKeller 7:6a0958c2be7e 8
OliverKeller 7:6a0958c2be7e 9 Detection(int channel_, int time_) {
mva111 0:52895a475820 10 channel = channel_;
mva111 0:52895a475820 11 time = time_;
mva111 0:52895a475820 12 temp = 0;
mva111 0:52895a475820 13 pressure = 0;
OliverKeller 7:6a0958c2be7e 14 }
OliverKeller 7:6a0958c2be7e 15 };