TCS34725.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. #include "main.h"
  2. #define TCS34725_ADDRESS (0x29 << 1)
  3. #define TCS34725_COMMAND_BIT (0x80)
  4. #define TCS34725_ENABLE (0x00)
  5. #define TCS34725_ENABLE_AIEN (0x10) /* RGBC Interrupt Enable */
  6. #define TCS34725_ENABLE_WEN (0x08) /* Wait enable - Writing 1 activates the wait timer */
  7. #define TCS34725_ENABLE_AEN (0x02) /* RGBC Enable - Writing 1 actives the ADC, 0 disables it */
  8. #define TCS34725_ENABLE_PON (0x01) /* Power on - Writing 1 activates the internal oscillator, 0 disables it */
  9. #define TCS34725_ATIME (0x01) /* Integration time */
  10. #define TCS34725_WTIME (0x03) /* Wait time (if TCS34725_ENABLE_WEN is asserted) */
  11. #define TCS34725_WTIME_2_4MS (0xFF) /* WLONG0 = 2.4ms WLONG1 = 0.029s */
  12. #define TCS34725_WTIME_204MS (0xAB) /* WLONG0 = 204ms WLONG1 = 2.45s */
  13. #define TCS34725_WTIME_614MS (0x00) /* WLONG0 = 614ms WLONG1 = 7.4s */
  14. #define TCS34725_AILTL (0x04) /* Clear channel lower interrupt threshold */
  15. #define TCS34725_AILTH (0x05)
  16. #define TCS34725_AIHTL (0x06) /* Clear channel upper interrupt threshold */
  17. #define TCS34725_AIHTH (0x07)
  18. #define TCS34725_PERS (0x0C) /* Persistence register - basic SW filtering mechanism for interrupts */
  19. #define TCS34725_PERS_NONE (0b0000) /* Every RGBC cycle generates an interrupt */
  20. #define TCS34725_PERS_1_CYCLE (0b0001) /* 1 clean channel value outside threshold range generates an interrupt */
  21. #define TCS34725_PERS_2_CYCLE (0b0010) /* 2 clean channel values outside threshold range generates an interrupt */
  22. #define TCS34725_PERS_3_CYCLE (0b0011) /* 3 clean channel values outside threshold range generates an interrupt */
  23. #define TCS34725_PERS_5_CYCLE (0b0100) /* 5 clean channel values outside threshold range generates an interrupt */
  24. #define TCS34725_PERS_10_CYCLE (0b0101) /* 10 clean channel values outside threshold range generates an interrupt */
  25. #define TCS34725_PERS_15_CYCLE (0b0110) /* 15 clean channel values outside threshold range generates an interrupt */
  26. #define TCS34725_PERS_20_CYCLE (0b0111) /* 20 clean channel values outside threshold range generates an interrupt */
  27. #define TCS34725_PERS_25_CYCLE (0b1000) /* 25 clean channel values outside threshold range generates an interrupt */
  28. #define TCS34725_PERS_30_CYCLE (0b1001) /* 30 clean channel values outside threshold range generates an interrupt */
  29. #define TCS34725_PERS_35_CYCLE (0b1010) /* 35 clean channel values outside threshold range generates an interrupt */
  30. #define TCS34725_PERS_40_CYCLE (0b1011) /* 40 clean channel values outside threshold range generates an interrupt */
  31. #define TCS34725_PERS_45_CYCLE (0b1100) /* 45 clean channel values outside threshold range generates an interrupt */
  32. #define TCS34725_PERS_50_CYCLE (0b1101) /* 50 clean channel values outside threshold range generates an interrupt */
  33. #define TCS34725_PERS_55_CYCLE (0b1110) /* 55 clean channel values outside threshold range generates an interrupt */
  34. #define TCS34725_PERS_60_CYCLE (0b1111) /* 60 clean channel values outside threshold range generates an interrupt */
  35. #define TCS34725_CONFIG (0x0D)
  36. #define TCS34725_CONFIG_WLONG (0x02) /* Choose between short and long (12x) wait times via TCS34725_WTIME */
  37. #define TCS34725_CONTROL (0x0F) /* Set the gain level for the sensor */
  38. #define TCS34725_ID (0x12) /* 0x44 = TCS34721/TCS34725, 0x4D = TCS34723/TCS34727 */
  39. #define TCS34725_STATUS (0x13)
  40. #define TCS34725_STATUS_AINT (0x10) /* RGBC Clean channel interrupt */
  41. #define TCS34725_STATUS_AVALID (0x01) /* Indicates that the RGBC channels have completed an integration cycle */
  42. #define TCS34725_CDATAL (0x14) /* Clear channel data */
  43. #define TCS34725_CDATAH (0x15)
  44. #define TCS34725_RDATAL (0x16) /* Red channel data */
  45. #define TCS34725_RDATAH (0x17)
  46. #define TCS34725_GDATAL (0x18) /* Green channel data */
  47. #define TCS34725_GDATAH (0x19)
  48. #define TCS34725_BDATAL (0x1A) /* Blue channel data */
  49. #define TCS34725_BDATAH (0x1B)
  50. extern uint8_t TCS34725_I2C_Read(uint8_t addr, uint8_t reg);
  51. extern void TCS34725_I2C_Write(uint8_t addr, uint8_t reg, uint8_t data);
  52. extern void TCS34725_getrawdata(void);
  53. extern void TCS34725_disable(void);
  54. extern void TCS34725_enable(void);
  55. //extern void tcs34725SetIntegrationTime(tcs34725IntegrationTime_t it);
  56. extern void getRawDataOneShot (void);
  57. extern uint16_t calculateColorTemperature(uint16_t r, uint16_t g, uint16_t b);
  58. extern uint16_t calculateLux(uint16_t r, uint16_t g, uint16_t b);
  59. //extern void tcs34725SetGain(tcs34725Gain_t gain);
  60. extern uint16_t calculateColorTemperature_dn40(uint16_t r, uint16_t g, uint16_t b, uint16_t c);
  61. extern void i2c_status(HAL_StatusTypeDef data);
  62. extern void TCS34725_init(void);
  63. extern uint8_t RGB_Data[100];