]> git.basschouten.com Git - openhab-addons.git/blob
9488503f5c444aaabc48634e297c33d096548a1c
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.onewire.internal.device;
14
15 /**
16  * The {@link OwSensorType} defines all known sensor types
17  *
18  * @author Jan N. Klug - Initial contribution
19  */
20
21 public enum OwSensorType {
22     DS1420,
23     DS18S20,
24     DS18B20,
25     DS1822,
26     DS1923,
27     DS2401,
28     DS2405,
29     DS2406,
30     DS2408,
31     DS2409,
32     DS2413,
33     DS2423,
34     DS2431,
35     DS2438,
36     MS_TC,
37     MS_TH,
38     MS_TL,
39     MS_TH_S,
40     MS_TV,
41     AMS,
42     AMS_S,
43     BAE,
44     BAE0910,
45     BAE0911,
46     BMS,
47     BMS_S,
48     EDS,
49     EDS0064,
50     EDS0065,
51     EDS0066,
52     EDS0067,
53     EDS0068,
54     UNKNOWN
55 }