Search found 8 matches

by luyevzranr
Mon May 08, 2023 4:20 pm
Forum: 硬件问题讨论
Topic: esp32s3运行一个简单程序一晚, 居然热得自己把自己给烧掉了
Replies: 0
Views: 1941

esp32s3运行一个简单程序一晚, 居然热得自己把自己给烧掉了

就运行这个程序一晚上,早上起来发现非常热, 再试已经不能连机了,电流始终0.5安.

就下面这个小程序:
/**
* 这是主机的程序
*/
#include <Wire.h>

int num = 1; //用来发送给从机
int address = 33; //从机地址

void setup() {
Serial.begin(115200);

if(Wire.begin(5,4)) //SDA SCL;主机加入I2C总线中
Serial.println("i2c success");
else
Serial.println("i2c failed");
}

void ...
by luyevzranr
Sat May 06, 2023 2:06 pm
Forum: ESP-IDF 中文讨论版
Topic: arduino esp32s3 只有TWAIreceive例子,能否提供一个匹配的发送例子
Replies: 1
Views: 2251

arduino esp32s3 只有TWAIreceive例子,能否提供一个匹配的发送例子

arduino esp32s3 只有TWAIreceive例子,能否提供一个匹配的发送例子

接收例子源码:
/* ESP32 TWAI receive example.
Receive messages and sends them over serial.

Connect a CAN bus transceiver to the RX/TX pins.
For example: SN65HVD230

TWAI_MODE_LISTEN_ONLY is used so that the TWAI controller will not influence the bus ...
by luyevzranr
Sat May 06, 2023 11:47 am
Forum: ESP-IDF 中文讨论版
Topic: idf.py set-target esp32s3 提示错误是什么原因
Replies: 1
Views: 2537

idf.py set-target esp32s3 提示错误是什么原因

D:\硬件开发资料\esp-idf-v5.0.1\examples\peripherals\twai\twai_network\twai_network_master>idf.py set-target esp32s3
Adding "set-target"'s dependency "fullclean" to list of commands with default set of options.
Executing action: fullclean
Build directory 'd:\硬件开发资料\esp-idf-v5.0.1\examples\peripherals\twai ...
by luyevzranr
Sat May 06, 2023 5:43 am
Forum: ESP-IDF 中文讨论版
Topic: can sample loopbackdemo 卡在can begin不动, 什么原因
Replies: 0
Views: 1030

can sample loopbackdemo 卡在can begin不动, 什么原因

卡在Serial.println ("pos65") ;的下一行不动.

/******************************************************************************/
/* File name : LoopBackDemo.ino */
/* Project : ESP32-CAN-DRIVER */
/* Description : ESP32 CAN Self Test with Interrupt Handler ...
by luyevzranr
Wed Apr 19, 2023 11:04 am
Forum: 硬件问题讨论
Topic: ESP32 s3 DAC开发文档在哪里?
Replies: 1
Views: 2552

ESP32 s3 DAC开发文档在哪里?

看了半天没看见,DAC开发文档在哪里
by luyevzranr
Wed Apr 19, 2023 4:59 am
Forum: 硬件问题讨论
Topic: ESP32 S2 与 S3 的 DAC 分别是多少位的?
Replies: 1
Views: 2601

ESP32 S2 与 S3 的 DAC 分别是多少位的?

ESP32 S2 与 S3 的 DAC 分别是多少位的?
by luyevzranr
Sun Mar 12, 2023 1:25 am
Forum: 硬件问题讨论
Topic: 没有内部外部flash的esp32 s3可以烧写程序到里面吗
Replies: 1
Views: 2008

没有内部外部flash的esp32 s3可以烧写程序到里面吗

没有内部外部flash的esp32 s3可以烧写程序到里面吗

Go to advanced search