电子技术论坛

 找回密码
 快速注册

QQ登录

只需一步,快速开始

搜索
下载方法|用单线程|避免多扣帖子规范|求助必读|发帖建议积分策略|勋章介绍|新人必读获取金币|推广论坛|出售帖子基本礼节|致会员信|版规总则
禁涉政治|反对低俗|举报专帖征集相片|留下足迹|推荐精华上传附件|制作分卷|使用网盘禁发qq群|恶意灌水|纯表情帖加入团队|监督机制|安全上网
查看: 651|回复: 4

备份一些以前编写的无线遥控资料RF315

[复制链接]
发表于 2026-6-9 13:51:33 | 显示全部楼层 |阅读模式
RT809HSE编程器

注册家电维修技术论坛,与同行畅聊维修技术,享更多技术论坛功能。

您需要 登录 才可以下载或查看,没有帐号?快速注册

x
RF315,stc15w04

遥控解码PT2262—2017-12-16.rar

900.88 KB, 下载次数: 3, 下载积分: 金币 -1

 楼主| 发表于 2026-6-9 13:55:25 | 显示全部楼层
编译时1577字节,精简版本

遥控解码PT2262—2017-12-16.rar

887.07 KB, 下载次数: 1, 下载积分: 金币 -1

发表于 2026-6-9 22:36:36 | 显示全部楼层
RT809HSE编程器
感谢分享~
发表于 2026-6-10 12:19:10 | 显示全部楼层
谢谢分享
 楼主| 发表于 2026-6-11 16:33:17 | 显示全部楼层
androidstudio byte 16进显示测试


public  String byteToHex(byte b) {
        String strHex = Integer.toHexString(0xFF & b);
        if (strHex.length() == 1) {
            strHex = "0" + strHex;
        }
        return strHex;
    }
    //!16进字符打印
    public  void bytesToHex(byte[] bytes,int n) {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            sb.append(byteToHex(bytes[i]));
            mybyte[i] = bytes[i];

        }
        mybyte_cnt = n;
//        for (byte b : bytes) {
//            sb.append(byteToHex(b));
//        }
       // return sb.toString();
        System.out.println("16进直接打印显示= " + sb.toString());
    }
    public  String bytesToHex_old(byte[] bytes,int cnt) {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < cnt; i++) {
            sb.append((byteToHex(bytes[i])) + " ");//加空格


        }
        return sb.toString();
    }
    public  String bytesToHex_old_2(byte[] bytes) {
        StringBuilder sb = new StringBuilder();
        for (byte b : bytes) {
            sb.append(byteToHex(b));
        }
        return sb.toString();
    }
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|家电维修技术论坛 ( 鄂ICP备09003585号-2 )

GMT+8, 2026-7-28 22:31 , Processed in 0.058151 second(s), 5 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

CopyRight © 电子技术论坛
电子邮箱:8794149@qq.com | 联系 QQ:3081868839 | 官方网址:www.dzdu.com

Qiji. All Rights Reserved


服务条款 | 站长声明

Wuhan Qiji Technology Co., Ltd.武汉奇迹科技有限公司版权所有


鄂ICP备09003585号-2鄂公网安备42010602000420号

快速回复 返回顶部 返回列表