2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 package org.altusmetrum.altoslib_3;
20 import java.util.concurrent.TimeoutException;
22 public class AltosSensorTMini {
28 static public void update_state(AltosState state, AltosLink link, AltosConfigData config_data) throws InterruptedException {
30 AltosSensorTMini sensor_tmini = new AltosSensorTMini(link);
32 if (sensor_tmini == null)
34 state.set_battery_voltage(AltosConvert.easy_mini_voltage(sensor_tmini.batt));
35 state.set_apogee_voltage(AltosConvert.easy_mini_voltage(sensor_tmini.apogee));
36 state.set_main_voltage(AltosConvert.easy_mini_voltage(sensor_tmini.main));
38 } catch (TimeoutException te) {
42 public AltosSensorTMini(AltosLink link) throws InterruptedException, TimeoutException {
43 String[] items = link.adc();
44 for (int i = 0; i < items.length;) {
45 if (items[i].equals("tick:")) {
46 tick = Integer.parseInt(items[i+1]);
50 if (items[i].equals("apogee:")) {
51 apogee = Integer.parseInt(items[i+1]);
55 if (items[i].equals("main:")) {
56 main = Integer.parseInt(items[i+1]);
60 if (items[i].equals("batt:")) {
61 batt = Integer.parseInt(items[i+1]);