|
| 1 | +/* |
| 2 | + * Copyright (c) 2010-2025 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.modbus.sungrow.internal.mapper.impl; |
| 14 | + |
| 15 | +import java.math.BigDecimal; |
| 16 | + |
| 17 | +import org.eclipse.jdt.annotation.NonNullByDefault; |
| 18 | +import org.openhab.binding.modbus.sungrow.internal.mapper.ToStringMapper; |
| 19 | + |
| 20 | +/** |
| 21 | + * This mapper implements {@link ToStringMapper} and maps the hex codes of the sungrow modbus register to the human |
| 22 | + * readable device names. |
| 23 | + * |
| 24 | + * @author Tim Scholand - Initial contribution |
| 25 | + */ |
| 26 | +@NonNullByDefault |
| 27 | +public class DeviceTypeMapper implements ToStringMapper { |
| 28 | + |
| 29 | + private static final DeviceTypeMapper INSTANCE = new DeviceTypeMapper(); |
| 30 | + |
| 31 | + /** |
| 32 | + * @return a singleton instance of the mapper |
| 33 | + */ |
| 34 | + public static DeviceTypeMapper instance() { |
| 35 | + return INSTANCE; |
| 36 | + } |
| 37 | + |
| 38 | + private DeviceTypeMapper() { |
| 39 | + // use instance() |
| 40 | + } |
| 41 | + |
| 42 | + @Override |
| 43 | + public String map(BigDecimal value) { |
| 44 | + String hex = String.format("0x%03X", value.intValue()); |
| 45 | + return switch (hex) { |
| 46 | + case "0xD17" -> "SH3.0RS"; |
| 47 | + case "0xD0D" -> "SH3.6RS"; |
| 48 | + case "0xD18" -> "SH4.0RS"; |
| 49 | + case "0xD0F" -> "SH5.0RS"; |
| 50 | + case "0xD10" -> "SH6.0RS"; |
| 51 | + case "0xD1A" -> "SH8.0RS"; |
| 52 | + case "0xD1B" -> "SH10RS"; |
| 53 | + case "0xE00" -> "SH5.0RT"; |
| 54 | + case "0xE01" -> "SH6.0RT"; |
| 55 | + case "0xE02" -> "SH8.0RT"; |
| 56 | + case "0xE03" -> "SH10RT"; |
| 57 | + case "0xE10" -> "SH5.0RT-20"; |
| 58 | + case "0xE11" -> "SH6.0RT-20"; |
| 59 | + case "0xE12" -> "SH8.0RT-20"; |
| 60 | + case "0xE13" -> "SH10RT-20"; |
| 61 | + case "0xE0C" -> "SH5.0RT-V112"; |
| 62 | + case "0xE0D" -> "SH6.0RT-V112"; |
| 63 | + case "0xE0E" -> "SH8.0RT-V112"; |
| 64 | + case "0xE0F" -> "SH10RT-V112"; |
| 65 | + case "0xE08" -> "SH5.0RT-V122"; |
| 66 | + case "0xE09" -> "SH6.0RT-V122"; |
| 67 | + case "0xE0A" -> "SH8.0RT-V122"; |
| 68 | + case "0xE0B" -> "SH10RT-V122"; |
| 69 | + case "0xE20" -> "SH5T-V11"; |
| 70 | + case "0xE21" -> "SH6T-V11"; |
| 71 | + case "0xE22" -> "SH8T-V11"; |
| 72 | + case "0xE23" -> "SH10T-V11"; |
| 73 | + case "0xE24" -> "SH12T-V11"; |
| 74 | + case "0xE25" -> "SH15T-V11"; |
| 75 | + case "0xE26" -> "SH20T-V11"; |
| 76 | + case "0xE28" -> "SH25T-V11"; |
| 77 | + default -> "UNKNOWN: " + hex; |
| 78 | + }; |
| 79 | + } |
| 80 | +} |
0 commit comments