First, create a new MPLAB 8 or MPLAB X project for your new application.
The mTouch_Init() function will automatically configure the ADC, communications module (if enabled), and all required interrupts. There are only a few things the user is required to define on power-up:
OSCCON = 0b01110000; // 32 MHz Fosc w/ PLLEN_ON config word on PIC16F1937
OPTION_REG = 0b10000000; // TMR0 Prescaler = 1:2 (~40% processor usage)
ANSELA = 0b00000000; // Digital TRISA = 0b00000000; // Output PORTA = 0b00000000; // Low
See the basic sensor configuration guide and the feature-specific help section.