1:给我们一份用51单片机点亮一个发光二极管的C语言程序怎么编写呢?

2025-03-18 23:50:49
推荐回答(1个)
回答(1):

#include
sbit LED=P1^0;
main()
{
LED=0;
while(1);
}