AP3216C
简介
AP3216C 是敦南科技推出的一款三合一环境传感器, 它包含了:数字环境光传感器(ALS)、接近传感器(PS)和一个红外 LED(IR)。该芯片通过 IIC 接口和 MCU 连接,并支持中断(INT)输出。AP3216C 的特点如下:
- IIC 接口,支持高达 400KHz 通信速率
- 支持多种工作模式(ALS、PS+IR、ALS+PS+IR 等)
- 内置温度补偿电路
- 工作温度支持-30~80℃
- 环境光传感器具有 16 位分辨率
- 接近传感器具有 10 位分辨率
- 红外传感器具有 10 位分辨率
- 超小封装(4.12.41.35mm)
因为以上一些特性,AP3216C 被广泛应用于智能手机上面,用来检测光强度(自动背光控制),和接近开关控制(听筒靠近耳朵,手机自动灭屏功能)。
写寄存器

先发送 AP3216C 的地址(7 位,为0X1E
,左移一位后为 0X3C
),最低位 W=0 表示写数据,随后发送 8 位寄存器地址,最后发送 8 位寄存器值。其中:S,表示 IIC 起始信号;W,表示读/写标志位(W=0 表示写,W=1 表示读);A,表示应答信号;P,表示 IIC 停止信号。
读寄存器

注意:AP3216C的读取间隔至少需要大于112.5ms(一次ALS+PS+IR转换的时间)
工程
ap3216c.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| #include "sys.h" #include "main.h"
#ifndef __AP3216C_H #define __AP3216C_H
#define AP3216C_ADDR 0x3C
#endif
uint8_t ap3216c_init(void); uint8_t ap3216c_write_one_byte(uint8_t reg, uint8_t data); uint8_t ap3216c_read_one_byte(uint8_t reg); void ap3216c_read_data(uint16_t *ir, uint16_t *ps, uint16_t *als);
|
ap3216c.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
| #include "main.h" #include "sys.h" #include "ap3216c.h" #include "custom_i2c.h" #include "delay.h"
uint8_t ap3216c_init(void) { uint8_t temp = 0; iic_init();
ap3216c_write_one_byte(0x00, 0x04); delay_ms(50); ap3216c_write_one_byte(0x00, 0x03); temp = ap3216c_read_one_byte(0x00); if (temp == 0x03) return 0; else return 1; }
uint8_t ap3216c_write_one_byte(uint8_t reg, uint8_t data) { iic_start(); iic_send_byte(AP3216C_ADDR | 0x00);
if (iic_wait_ack()) { iic_stop(); return 1; }
iic_send_byte(reg); iic_wait_ack(); iic_send_byte(data);
if (iic_wait_ack()) { iic_stop(); return 1; }
iic_stop(); return 0; }
uint8_t ap3216c_read_one_byte(uint8_t reg) { uint8_t result;
iic_start();
iic_send_byte(AP3216C_ADDR | 0x00); iic_wait_ack();
iic_send_byte(reg); iic_wait_ack();
iic_start(); iic_send_byte(AP3216C_ADDR | 0x01); iic_wait_ack(); result = iic_read_byte(0); iic_stop(); return result; }
void ap3216c_read_data(uint16_t *ir, uint16_t *ps, uint16_t *als) { uint8_t rx_buf[6]; uint8_t i;
for (i = 0; i < 6; i++) { rx_buf[i] = ap3216c_read_one_byte(0x0A + i); }
if (rx_buf[0] & 0x80) { *ir = 0; } else { *ir = ((uint16_t)rx_buf[1] << 2) | (rx_buf[0] & 0x03); }
*als = rx_buf[2] | ((uint16_t)rx_buf[3] << 8);
if (rx_buf[4] & 0x40) { *ps = 0; } else { *ps = ((uint16_t)(rx_buf[5] & 0x3F) << 4) | (rx_buf[4] & 0x0F); } }
|
main.c
1 2 3 4 5 6 7 8
| while (ap3216c_init()) { uint8_t txbuf[] = "ap3216c init failed!\n"; HAL_UART_Transmit_IT(&huart1, txbuf, sizeof(txbuf)); led_red(1); }
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| while (1) { ap3216c_read_data(&ir, &ps, &als);
uint8_t txbuf[23];
sprintf(txbuf, "ir:%d, ps:%d, als:%d\r\n", ir, ps, als); HAL_UART_Transmit_IT(&huart1, (uint8_t *)txbuf, sizeof(txbuf));
led_green_toggle(); delay_ms(120);
}
|
测试
