Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // A video demonstration of this project can be found here: https://bit.ly/2Wfsdqs
- #ifndef XC_SKITTLE_SORTER_H
- #define XC_SKITTLE_SORTER_H
- #include <xc.h> // include processor files - each processor file is guarded.
- #define _XTAL_FREQ 500000
- #define TCS34725_READ_ADDRESS (0x53)
- #define TCS34725_WRITE_ADDRESS (0x52) /**< I2C address **/
- #define TCS34725_COMMAND_BIT (0x80) /**< Command bit **/
- #define TCS34725_ENABLE (0x00) /**< Interrupt Enable register */
- #define TCS34725_ENABLE_AIEN (0x10) /**< RGBC Interrupt Enable */
- #define TCS34725_ENABLE_WEN \
- (0x08) /**< Wait Enable - Writing 1 activates the wait timer */
- #define TCS34725_ENABLE_AEN \
- (0x02) /**< RGBC Enable - Writing 1 actives the ADC, 0 disables it */
- #define TCS34725_ENABLE_PON \
- (0x01) /**< Power on - Writing 1 activates the internal oscillator, 0 \
- disables it */
- #define TCS34725_ATIME (0x01) /**< Integration time */
- #define TCS34725_WTIME \
- (0x03) /**< Wait time (if TCS34725_ENABLE_WEN is asserted) */
- #define TCS34725_WTIME_2_4MS (0xFF) /**< WLONG0 = 2.4ms WLONG1 = 0.029s */
- #define TCS34725_WTIME_204MS (0xAB) /**< WLONG0 = 204ms WLONG1 = 2.45s */
- #define TCS34725_WTIME_614MS (0x00) /**< WLONG0 = 614ms WLONG1 = 7.4s */
- #define TCS34725_AILTL \
- (0x04) /**< Clear channel lower interrupt threshold (lower byte) */
- #define TCS34725_AILTH \
- (0x05) /**< Clear channel lower interrupt threshold (higher byte) */
- #define TCS34725_AIHTL \
- (0x06) /**< Clear channel upper interrupt threshold (lower byte) */
- #define TCS34725_AIHTH \
- (0x07) /**< Clear channel upper interrupt threshold (higher byte) */
- #define TCS34725_PERS \
- (0x0C) /**< Persistence register - basic SW filtering mechanism for \
- interrupts */
- #define TCS34725_PERS_NONE \
- (0b0000) /**< Every RGBC cycle generates an interrupt */
- #define TCS34725_PERS_1_CYCLE \
- (0b0001) /**< 1 clean channel value outside threshold range generates an \
- interrupt */
- #define TCS34725_PERS_2_CYCLE \
- (0b0010) /**< 2 clean channel values outside threshold range generates an \
- interrupt */
- #define TCS34725_PERS_3_CYCLE \
- (0b0011) /**< 3 clean channel values outside threshold range generates an \
- interrupt */
- #define TCS34725_PERS_5_CYCLE \
- (0b0100) /**< 5 clean channel values outside threshold range generates an \
- interrupt */
- #define TCS34725_PERS_10_CYCLE \
- (0b0101) /**< 10 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_15_CYCLE \
- (0b0110) /**< 15 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_20_CYCLE \
- (0b0111) /**< 20 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_25_CYCLE \
- (0b1000) /**< 25 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_30_CYCLE \
- (0b1001) /**< 30 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_35_CYCLE \
- (0b1010) /**< 35 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_40_CYCLE \
- (0b1011) /**< 40 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_45_CYCLE \
- (0b1100) /**< 45 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_50_CYCLE \
- (0b1101) /**< 50 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_55_CYCLE \
- (0b1110) /**< 55 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_PERS_60_CYCLE \
- (0b1111) /**< 60 clean channel values outside threshold range generates an \
- interrupt*/
- #define TCS34725_CONFIG (0x0D) /**< Configuration **/
- #define TCS34725_CONFIG_WLONG \
- (0x02) /**< Choose between short and long (12x) wait times via \
- TCS34725_WTIME */
- #define TCS34725_CONTROL (0x0F) /**< Set the gain level for the sensor */
- #define TCS34725_ID \
- (0x12) /**< 0x44 = TCS34721/TCS34725, 0x4D = TCS34723/TCS34727 */
- #define TCS34725_STATUS (0x13) /**< Device status **/
- #define TCS34725_STATUS_AINT (0x10) /**< RGBC Clean channel interrupt */
- #define TCS34725_STATUS_AVALID \
- (0x01) /**< Indicates that the RGBC channels have completed an integration \
- cycle */
- #define TCS34725_CDATAL (0x14) /**< Clear channel data low byte */
- #define TCS34725_CDATAH (0x15) /**< Clear channel data high byte */
- #define TCS34725_RDATAL (0x16) /**< Red channel data low byte */
- #define TCS34725_RDATAH (0x17) /**< Red channel data high byte */
- #define TCS34725_GDATAL (0x18) /**< Green channel data low byte */
- #define TCS34725_GDATAH (0x19) /**< Green channel data high byte */
- #define TCS34725_BDATAL (0x1A) /**< Blue channel data low byte */
- #define TCS34725_BDATAH (0x1B) /**< Blue channel data high byte */
- #define SERVO_BASE 2
- #define SERVO_SLIDE 1
- // CONFIG1H
- #pragma config OSC = INTIO67 // Oscillator Selection bits (Internal oscillator block, port function on RA6 and RA7)
- #pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled)
- #pragma config IESO = OFF // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled)
- // CONFIG2L
- #pragma config PWRT = OFF // Power-up Timer Enable bit (PWRT disabled)
- #pragma config BOREN = OFF // Brown-out Reset Enable bits (Brown-out Reset disabled in hardware and software)
- #pragma config BORV = 3 // Brown Out Reset Voltage bits (Minimum setting)
- // CONFIG2H
- #pragma config WDT = OFF // Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit))
- #pragma config WDTPS = 32768 // Watchdog Timer Postscale Select bits (1:32768)
- // CONFIG3H
- #pragma config CCP2MX = PORTC // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1)
- #pragma config PBADEN = ON // PORTB A/D Enable bit (PORTB<4:0> pins are configured as analog input channels on Reset)
- #pragma config LPT1OSC = OFF // Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation)
- #pragma config MCLRE = OFF // MCLR Pin Enable bit (RE3 input pin enabled; MCLR disabled)
- // CONFIG4L
- #pragma config STVREN = OFF // Stack Full/Underflow Reset Enable bit (Stack full/underflow will cause Reset)
- #pragma config LVP = ON // Single-Supply ICSP Enable bit (Single-Supply ICSP enabled)
- #pragma config XINST = OFF // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode))
- // CONFIG5L
- #pragma config CP0 = OFF // Code Protection bit (Block 0 (000800-001FFFh) not code-protected)
- #pragma config CP1 = OFF // Code Protection bit (Block 1 (002000-003FFFh) not code-protected)
- #pragma config CP2 = OFF // Code Protection bit (Block 2 (004000-005FFFh) not code-protected)
- #pragma config CP3 = OFF // Code Protection bit (Block 3 (006000-007FFFh) not code-protected)
- // CONFIG5H
- #pragma config CPB = OFF // Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected)
- #pragma config CPD = OFF // Data EEPROM Code Protection bit (Data EEPROM not code-protected)
- // CONFIG6L
- #pragma config WRT0 = OFF // Write Protection bit (Block 0 (000800-001FFFh) not write-protected)
- #pragma config WRT1 = OFF // Write Protection bit (Block 1 (002000-003FFFh) not write-protected)
- #pragma config WRT2 = OFF // Write Protection bit (Block 2 (004000-005FFFh) not write-protected)
- #pragma config WRT3 = OFF // Write Protection bit (Block 3 (006000-007FFFh) not write-protected)
- // CONFIG6H
- #pragma config WRTC = OFF // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected)
- #pragma config WRTB = OFF // Boot Block Write Protection bit (Boot block (000000-0007FFh) not write-protected)
- #pragma config WRTD = OFF // Data EEPROM Write Protection bit (Data EEPROM not write-protected)
- // CONFIG7L
- #pragma config EBTR0 = OFF // Table Read Protection bit (Block 0 (000800-001FFFh) not protected from table reads executed in other blocks)
- #pragma config EBTR1 = OFF // Table Read Protection bit (Block 1 (002000-003FFFh) not protected from table reads executed in other blocks)
- #pragma config EBTR2 = OFF // Table Read Protection bit (Block 2 (004000-005FFFh) not protected from table reads executed in other blocks)
- #pragma config EBTR3 = OFF // Table Read Protection bit (Block 3 (006000-007FFFh) not protected from table reads executed in other blocks)
- // CONFIG7H
- #pragma config EBTRB = OFF // Boot Block Table Read Protection bit (Boot block (000000-0007FFh) not protected from table reads executed in other blocks)
- // #pragma config statements should precede project file includes.
- // Use project enums instead of #define for ON and OFF.
- #endif /* XC_sKITTLE_SORTER_H */
Add Comment
Please, Sign In to add comment