fork download
  1. #include <xc.h>
  2. #define _XTAL_FREQ 20e6
  3.  
  4. void main() {
  5. TRISA0 = 1; // RA0 = FSR input (analog)
  6. TRISB0 = 1; // RB0 = Touch input (digital)
  7. TRISD0 = 0; // RD0 = TRIAC control (output)
  8. ADCON1 = 0x80; // AN0 analog, others digital
  9. ADCON0 = 0x01; // ADC on, AN0, Fosc/2
  10.  
  11. while (1) {
  12. ADCON0bits.GO = 1; // Start ADC conversion
  13. while (ADCON0bits.GO); // Wait for conversion
  14. int fsrValue = ADRESH; // Read FSR (8-bit)
  15.  
  16. int touchValue = PORTBbits.RB0; // Read touch sensor
  17.  
  18. // Cut power if grip is loose (FSR low or touch released)
  19. if (fsrValue < 50 || touchValue == 0) RD0 = 0; // TRIAC OFF
  20. else RD0 = 1; // TRIAC ON
  21. __delay_ms(10);
  22. }
  23. }
Success #stdin #stdout 0.03s 26028KB
stdin
Standard input is empty
stdout
#include <xc.h>
#define _XTAL_FREQ 20e6

void main() {
    TRISA0 = 1;    // RA0 = FSR input (analog)
    TRISB0 = 1;    // RB0 = Touch input (digital)
    TRISD0 = 0;    // RD0 = TRIAC control (output)
    ADCON1 = 0x80; // AN0 analog, others digital
    ADCON0 = 0x01; // ADC on, AN0, Fosc/2

    while (1) {
        ADCON0bits.GO = 1;     // Start ADC conversion
        while (ADCON0bits.GO);  // Wait for conversion
        int fsrValue = ADRESH;  // Read FSR (8-bit)

        int touchValue = PORTBbits.RB0; // Read touch sensor

        // Cut power if grip is loose (FSR low or touch released)
        if (fsrValue < 50 || touchValue == 0) RD0 = 0; // TRIAC OFF
        else RD0 = 1;                                 // TRIAC ON
        __delay_ms(10);
    }
}