📄 sim.ini
字号:
//*** <<< Use Configuration Wizard in Context Menu >>> ***
/*-----------------------------------------------*/
/* Analog0() simulates analog input values given */
/* to channel-0 (AIN0) of the C166 derivative */
/*-----------------------------------------------*/
Signal void analog1 (float limit) {
float volts;
printf ("Analog1 (%f) entered.\n", limit);
while (1) { /* forever */
volts = 0;
while (volts <= limit) {
ain1 = volts; /* analog input-0 */
twatch (500000); /* 200000 Cycles Time-Break */
volts += 0.1; /* increase voltage */
}
volts = limit;
while (volts >= 0.0) {
ain1 = volts;
twatch (500000); /* 200000 Cycles Time-Break */
volts -= 0.1; /* decrease voltage */
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -