do you know why the upper part of the screen has only blurry red or green color lights but doesn't show any simbols? The lower part of the screen shows detail simbols! So, I can't control PV tempreture. Did you have a similar fixing?
Why is your vídeo title in English if the video isn't?
@ggggggg-fo4ki Жыл бұрын
ต่อใช้งานให้ดูหน่อยคับ
@Kittisak_Pomarsa Жыл бұрын
ต่อใช้งานแล้วนะครับ ย้อนดูคลิปเก่าๆได้เลย
@ggggggg-fo4ki Жыл бұрын
วัดกระแสยังไงคับงง
@Kittisak_Pomarsa Жыл бұрын
งงตรงไหนครับ
@ggggggg-fo4ki Жыл бұрын
@@Kittisak_Pomarsaที่พี่วัดกระแส ขอดูหน่อยคับ
@poetalifeordie Жыл бұрын
Good afternoon. She receives a cordial greeting. Could you provide a download link of the Software? I hope it's possible, thank you very much. Greetings.
@Kittisak_Pomarsa Жыл бұрын
const int LED_PIN = 0; // D0: pin 5, PB0 const int INTERRUPT_PIN = 3; // D3: pin 2, PB3 const int LED1_PIN = 4; const int DEBOUNCE_DELAY = 200; volatile bool interrupt_flag = false; bool s = HIGH; bool led_level = HIGH; unsigned long t = 0; void setup() { pinMode(LED_PIN, OUTPUT); pinMode(LED1_PIN, OUTPUT); digitalWrite(LED_PIN, led_level); enablePinChangeInterrupt(); } /* Command: main loop - toggle the LED if interrupt flag is set */ void loop() { if (interrupt_flag) { led_level = !led_level; digitalWrite(LED_PIN, led_level); delay(DEBOUNCE_DELAY); interrupt_flag = false; } /*---------------------------------------------------------------------------------*/ for (int i = 0; i < 1000; i++) { if (millis() - t >= 100) { /* if (interrupt_flag == true) { break; } */ s = !s; digitalWrite(LED1_PIN, s); t = millis(); } } } /* Command: enable pin change interrupts */ void enablePinChangeInterrupt() { pinMode(INTERRUPT_PIN, INPUT_PULLUP); cli(); PCMSK |= (1 << digitalPinToPCMSKbit(INTERRUPT_PIN)); // Pin Change Enable // equivalent to: PCMSK |= (1 <<PCINT3); GIMSK |= (1 << digitalPinToPCICRbit(INTERRUPT_PIN)); // PCIE Pin Change Interrupt Enable // equivalent to: GIMSK |= (1 << PCIE); sei(); } /* Command: interrupt handler */ ISR(PCINT0_vect) { interrupt_flag = true; }