⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 address.java

📁 这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统
💻 JAVA
字号:
/*--------------------------------------------------------------------------- * Copyright (C) 1999,2000 Dallas Semiconductor Corporation, All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY,  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL DALLAS SEMICONDUCTOR BE LIABLE FOR ANY CLAIM, DAMAGES * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * Except as contained in this notice, the name of Dallas Semiconductor * shall not be used except as stated in the Dallas Semiconductor * Branding Policy. *--------------------------------------------------------------------------- */package com.dalsemi.onewire.utils;/** * Utilities to translate and verify the 1-Wire Network address. * <p> * Q: What is a 1-Wire Network Address?<p> * A: A 1-Wire address is 64 bits consisting of an eight bit family code, forty eight * bits of serialized data and an eight bit CRC8 of the first 56 bits. * <p> * For example given the following address in hexadecimal: * <p> * 10 28 E9 14 00 00 00 F3 * <p> * The above is a family code 10 device with a serialized data * of 28 E9 14 00 00 00, and a CRC8 of F3. * <p> * The address can be stored in several ways: * <ul> * <li> * As a little-endian byte array:<p> * <code>byte[] address = { 0x10, (byte)0xE9, 0x14, 0x00, 0x00, 0x00, (byte)0xF3 };</code><p> * </li> * <li> * As a big-endian long:<p> * <code>long address = (long)0xF300000014E92810;</code><p> * </li> * <li> * As a big-endian String:<p> * <code>String address = "F300000014E92810";</code><p> * </li> * </ul> * @version    0.00, 21 August 2000 * @author     DS */public class Address{   //--------   //-------- Constructor   //--------   /**    * Private constructor to prevent instantiation.    */   private Address ()   {   }   //--------   //-------- Methods   //--------   /**    * Checks the CRC8 calculation of this 1-Wire Network address.    * <p>    * The address is valid if the CRC8 of the first seven bytes of the address gives    * a result equal to the eighth byte.    *    * @param  address  iButton or 1-Wire Network address to verify    *    * @return <code>true</code> if the family code is non-zero and the    * CRC8 calculation is correct.    * @see        com.dalsemi.onewire.utils.CRC8    */   public static boolean isValid (byte[] address)   {      if ((address [0] != 0) && (CRC8.compute(address) == 0))         return true;      else         return false;   }   /**    * Checks the CRC8 calculation of this 1-Wire Network address.    * <p>    * The address is valid if the CRC8 of the first seven bytes of the address gives    * a result equal to the eighth byte.    *    * @param  address  iButton or 1-Wire Network address to verify    *    * @return <code>true</code> if the family code is non-zero and the    * CRC8 calculation is correct.    * @see        com.dalsemi.onewire.utils.CRC8    */   public static boolean isValid (String address)   {      return isValid(toByteArray(address));   }   /**    * Checks the CRC8 calculation of this 1-Wire Network address.    * <p>    * The address is valid if the CRC8 of the first seven bytes of the address gives    * a result equal to the eighth byte.    *    * @param  address  iButton or 1-Wire Network address to verify    *    * @return <code>true</code> if the family code is non-zero and the    * CRC8 calculation is correct.    * @see        com.dalsemi.onewire.utils.CRC8    */   public static boolean isValid (long address)   {      return isValid(toByteArray(address));   }   /**    * Converts a 1-Wire Network address byte array (little endian)    * to a hex string representation (big endian).    *    * @param address, family code first.    *    * @return address represented in a String, family code last.    */   public static String toString (byte[] address)   {      // When displaying, the CRC is first, family code is last so      // that the center 6 bytes are a real serial number (not byte reversed).      byte[] barr = new byte[16];      int index = 0;      int ch;      for (int i = 7;i >= 0;i--)      {        ch = (address[i] >> 4) & 0x0F;        ch += ((ch > 9) ? 'A'-10 : '0');        barr[index++] = (byte)ch;        ch = address[i] & 0x0F;        ch += ((ch > 9) ? 'A'-10 : '0');        barr[index++] = (byte)ch;      }      return new String(barr);   }   /**    * Converts a 1-Wire Network address long (little endian)    * to a hex string representation (big endian).    *    * @param address, family code first.    *    * @return address represented in a long, little endian.    */   public static String toString (long address)   {      return toString(toByteArray(address));   }   /**    * Converts a 1-Wire Network Address string (big endian)    * to a byte array (little endian).    *    * @param address, family code last.    *    * @return address represented in a byte array, family    *                 code (LS byte) first.    */   public static byte[] toByteArray (String address)   {      byte address_byte [] = new byte [8];      for (int i = 0; i < 8; i++)      {         address_byte [7 - i] =            ( byte ) ((Character.digit((address.charAt(i * 2)), 16) << 4)                      | (Character.digit(address.charAt(i * 2 + 1), 16)));      }      return address_byte;   }   /**    * Convert an iButton or 1-Wire device address as a long    * (little endian) into an array of bytes.    */   public static byte[] toByteArray (long address)   {      /* This looks funny, but it should actually take         less time since I do 7 eight bit shifts instead         of 8+16+24+32+40+48+56 shifts.      */      byte address_byte [] = new byte [8];      address_byte [0] = ( byte ) address;      address          >>>= 8;      address_byte [1] = ( byte ) address;      address          >>>= 8;      address_byte [2] = ( byte ) address;      address          >>>= 8;      address_byte [3] = ( byte ) address;      address          >>>= 8;      address_byte [4] = ( byte ) address;      address          >>>= 8;      address_byte [5] = ( byte ) address;      address          >>>= 8;      address_byte [6] = ( byte ) address;      address          >>>= 8;      address_byte [7] = ( byte ) address;      return address_byte;   }   /**    * Converts a 1-Wire Network Address to a long (little endian).    *    * @returns  address represented as a long.    */   public static long toLong (byte[] address)   {      /* This looks funny, but it should actually take         less time since I do 7 eight bit shifts instead         of 8+16+24+32+40+48+56 shifts.      */      long longVal = (long) (address [7] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [6] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [5] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [4] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [3] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [2] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [1] & 0xFF);      longVal <<= 8;      longVal |= ( long ) (address [0] & 0xFF);      return longVal;   }   /**    * Converts a 1-Wire Network Address to a long (little endian).    *    * @returns  address represented as a String.    */   public static long toLong (String address)   {      return toLong(toByteArray(address));   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -