coloz
发表于 2022-5-12 14:17
东方CJ 发表于 2022-5-11 15:14
不小心删除了别人共享的设备,怎么找回
只能让对方重新分享给你
fhxily
发表于 2022-5-31 15:33
大佬们,我正在做一个设计,用的BMP280模块和OLED,然后我发现他们两个都用的是A4,A5引脚,我想问一下怎么把其中一个引脚改变成A6,A7,我用的是NANO板子,然后程序是网上找来的,不知道怎么改
coloz
发表于 2022-5-31 15:41
fhxily 发表于 2022-5-31 15:33
大佬们,我正在做一个设计,用的BMP280模块和OLED,然后我发现他们两个都用的是A4,A5引脚,我想问一下怎么把 ...
IIC设备,不能随便换,IIC是总线,两个设备地址不一样,可以复用IIC引脚
fhxily
发表于 2022-5-31 16:09
哦哦哦,我这两个都用的是IIC通讯,那就都让他们用一样的引脚吧
fhxily
发表于 2022-5-31 16:10
coloz 发表于 2022-5-31 15:41
IIC设备,不能随便换,IIC是总线,两个设备地址不一样,可以复用IIC引脚
感谢感谢
tan9045
发表于 2022-6-6 20:37
有没有大佬知道这是怎么回事呀
Arduino:1.8.5 (Windows 10), 开发板:"Arduino Uno"
项目使用了 924 字节,占用了 (2%) 程序存储空间。最大为 32256 字节。
全局变量使用了9字节,(0%)的动态内存,余留2039字节局部变量。最大为2048字节。
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0xbd
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xbd
上传出错。查看http://www.arduino.cc/en/Guide/Troubleshooting#upload 获取建议。
coloz
发表于 2022-6-7 16:44
tan9045 发表于 2022-6-6 20:37
有没有大佬知道这是怎么回事呀
Arduino:1.8.5 (Windows 10), 开发板:"Arduino Uno"
上传错误,确定下驱动安装没,串口选对没
4455667788
发表于 2022-6-8 11:51
有没有写好的阶乘代码
4455667788
发表于 2022-6-8 11:52
有没有写好的阶乘代码
ntwhq
发表于 2022-6-8 17:50
4455667788 发表于 2022-6-8 11:52
有没有写好的阶乘代码
给你发一个Python的代码,1000的阶乘,根据需要修改成你自己需要的语言。
f = 1
for i in range(1,1000):
f = f*i
print(f)