因此,我想从文本文件中读取一些oauth令牌,并将其发送到twitch api以获取令牌的ID。 现在,如果我仅使用asyncio.run()运行它,它将按预期工作。如果我按照自己的方式去做,那就不会。它仅在“发送请求”处停止。我想为文本文件中的每一行创建一个新的协程,如果这不是执行我的任务的正确方法,请这样做。 我只是希望它既快速又优化。
struct subSeq {
const byte intens;
const short duration;
};
typedef struct LEDSeq {
subSeq seq[];
};
struct LEDSeq LightSeq = { 255, 1000,
255, 0,
255, -1
};
struct LEDSeq SquareWave = { 0, 600,
0, 0,
255, 600,
255, 0,
0, -1
};
short x, y, a = 1, b;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
delay(100);
Serial.println("setup done ");
}
void loop() {
// put your main code here, to run repeatedly:
if (a == 1) {
for (x = 0; x < 10; x++) {
Serial.println(LightSeq.seq[x].intens);
}
a--;
}
}
许多主要功能已经使用其他stackoverflow问题帖子进行了编译。