bk7231n 无法支持单总线协议,推荐使用 I2C 协议的温度传感器
Search found 209 matches
- 2024年 Nov 13日 10:26
- Forum: TuyaOS-联网单品开发
- Topic: bk7231n 如何接入ds18b20 温度采集模块问题
- Replies: 15
- Views: 1052
- 2024年 Oct 18日 11:21
- Forum: TuyaOS-联网单品开发
- Topic: 【求助】T3在IDE上编译失败,能否提供环境搭建文档
- Replies: 7
- Views: 1091
Re: 【求助】T3在IDE上编译失败,能否提供环境搭建文档
上面的 tuyaos_demo_examples 是否可以编译通过
- 2024年 Oct 15日 17:29
- Forum: TuyaOS-联网单品开发
- Topic: 【求助】【TuyaOS OS】BK7231N_TuyaOS-3.8.5 电工单品开发包中的0942电量统计功能,在本地如何获取总用电量
- Replies: 2
- Views: 209
Re: 【求助】【TuyaOS OS】BK7231N_TuyaOS-3.8.5 电工单品开发包中的0942电量统计功能,在本地如何获取总用电量
lvyaya 2024年 Oct 15日 16:04我正在用电工产品开发包中的0942计量驱动框架,关于电能,每次上报的是累加量,请问这个框架能不能在本地获取到总的电能,如果不能,能否声明变量存储总电能并存储在flash里,保证断电重启后还能获取
需要你将累加量自己存储到flash中进行计算,关于 tuyaos flash 的操作,你可以查看 tuyaos 中带有的 tuyaos_demo_examples 中的 example_os_kv.c 实例查看 kv flash 的用法
- 2024年 Sep 24日 16:15
- Forum: TuyaOS-Networked Device Development
- Topic: the SPI communications “hangs” randomly-urgently
- Replies: 5
- Views: 4030
Re: the SPI communications “hangs” randomly-urgently
- If you have only one slave mounted on your spi, use pin 15 as cs. cfg->type is TUYA_SPI_AUTO_TYPE.
The T2 SPI pin is as follows:Code: Select all
// SCK -----> 14 // MOSI -----> 16 // MISO -----> 17 // CS -----> 15
- T2 SPI does not support full duplex, you need to use half duplex
- 2024年 Sep 18日 17:28
- Forum: TuyaOS-Networked Device Development
- Topic: the SPI communications “hangs” randomly-urgently
- Replies: 5
- Views: 4030
Re: the SPI communications “hangs” randomly-urgently
What do you want to use the SPI driver for? The T2 SPI driver needs to pay attention to a few things: If spi sends more than 4,096 bytes, a dma interrupt is used, which calls tkl_spi_set_spic_flag() after tkl_spi_init(). If an interactive interface is used, that is, tkl_spi_transfer(SPI_ID, spi_send...
- 2024年 Aug 22日 11:25
- Forum: TuyaOS-联网单品开发
- Topic: bk7231n uart传数据奇偶校验位设置不成功
- Replies: 8
- Views: 1435
Re: bk7231n uart传数据奇偶校验位设置不成功
你好,你试下,将 cfg.base_cfg.parity = TUYA_UART_PARITY_TYPE_ODD; 看下 uart 发出的是不是偶校验
- 2024年 Aug 22日 10:19
- Forum: TuyaOS-联网单品开发
- Topic: bk7231n uart传数据奇偶校验位设置不成功
- Replies: 8
- Views: 1435
Re: bk7231n uart传数据奇偶校验位设置不成功
你使用的 tuyaos 版本多少
- 2024年 Aug 8日 11:09
- Forum: TuyaOS-联网单品开发
- Topic: wifi联网单品,tuyaOS OS开发,RTL8720CM_TUYAOS-3.8.15里的demo_driver是适用于CRG1模组吗?
- Replies: 16
- Views: 2311
Re: wifi联网单品,tuyaOS OS开发,RTL8720CM_TUYAOS-3.8.15里的demo_driver是适用于CRG1模组吗?
可以详细描述下你在现在教程中遇到的问题不,以及那些地方你觉得可以更加完善点
- 2024年 Aug 7日 17:18
- Forum: TuyaOS-联网单品开发
- Topic: wifi联网单品,tuyaOS OS开发,RTL8720CM_TUYAOS-3.8.15里的demo_driver是适用于CRG1模组吗?
- Replies: 16
- Views: 2311
- 2024年 Aug 7日 16:18
- Forum: TuyaOS-联网单品开发
- Topic: wifi联网单品,tuyaOS OS开发,RTL8720CM_TUYAOS-3.8.15里的demo_driver是适用于CRG1模组吗?
- Replies: 16
- Views: 2311
Re: wifi联网单品,tuyaOS OS开发,RTL8720CM_TUYAOS-3.8.15里的demo_driver是适用于CRG1模组吗?
接收使用TIMER1 定时器,可是log 打印TIMER1 没有初始化, 也没有错误的Log OPERATE_RET reg_ir_hardware(CHAR_T *device_name) { IR_DRV_CFG_T ir_hw_cfg = {0}; /* IR hardware config*/ ir_hw_cfg.send_pin = IR_DEV_SEND_PIN; ir_hw_cfg.recv_pin = IR_DEV_RECV_PIN; ir_hw_cfg.send_timer = TUYA_TIMER_NUM_0; ir_hw_cfg.recv_timer = TUYA_TI...