All Projects → hepingood → pcf8591

hepingood / pcf8591

Licence: MIT license
pcf8591 full function driver

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to pcf8591

mcp4725
mcp4725 full function driver
Stars: ✭ 15 (-53.12%)
Mutual labels:  mcu, iic, dac, full-function-driver
mlx90614
mlx90614 full function driver
Stars: ✭ 17 (-46.87%)
Mutual labels:  mcu, iic, full-function-driver
mcp9600
mcp9600 full function driver
Stars: ✭ 22 (-31.25%)
Mutual labels:  mcu, iic, full-function-driver
fm24clxx
fm24clxx full function driver
Stars: ✭ 0 (-100%)
Mutual labels:  mcu, iic, full-function-driver
uvis25
uvis25 full function driver
Stars: ✭ 13 (-59.37%)
Mutual labels:  mcu, iic, full-function-driver
bmp180
bmp180 full function driver
Stars: ✭ 57 (+78.13%)
Mutual labels:  mcu, iic, full-function-driver
sht31
sht31 full function driver
Stars: ✭ 28 (-12.5%)
Mutual labels:  mcu, iic, full-function-driver
max30205
max30205 full function driver
Stars: ✭ 18 (-43.75%)
Mutual labels:  mcu, iic, full-function-driver
at24cxx
at24cxx full function driver
Stars: ✭ 28 (-12.5%)
Mutual labels:  mcu, iic, full-function-driver
sgp30
sgp30 full function driver
Stars: ✭ 24 (-25%)
Mutual labels:  mcu, iic, full-function-driver
adxl345
ADXL345 full function driver for general MCU and Linux.
Stars: ✭ 170 (+431.25%)
Mutual labels:  mcu, iic, full-function-driver
bmp388
bmp388 full function driver
Stars: ✭ 14 (-56.25%)
Mutual labels:  mcu, iic, full-function-driver
ina219
ina219 full function driver
Stars: ✭ 27 (-15.62%)
Mutual labels:  mcu, iic, full-function-driver
hx711
HX711 full function driver for general MCU and Linux.
Stars: ✭ 67 (+109.38%)
Mutual labels:  adc, mcu, full-function-driver
hcsr04
hcsr04 full function driver
Stars: ✭ 25 (-21.87%)
Mutual labels:  mcu, full-function-driver
pcf8574
pcf8574 full function driver
Stars: ✭ 106 (+231.25%)
Mutual labels:  mcu, iic
Johnny Five
JavaScript Robotics and IoT programming framework, developed at Bocoup.
Stars: ✭ 12,498 (+38956.25%)
Mutual labels:  adc, dac
drivers-for-mcu
The driver for the microprocessor
Stars: ✭ 68 (+112.5%)
Mutual labels:  adc, dac
max7219
MAX7219 full function driver for general MCU and Linux.
Stars: ✭ 86 (+168.75%)
Mutual labels:  mcu, full-function-driver
stm32-mcu
Application components for STMicro STM32 MCUs
Stars: ✭ 22 (-31.25%)
Mutual labels:  adc, dac

English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어

LibDriver PCF8591

MISRA API License

The PCF8591 is a single-chip, single-supply low-power 8-bit CMOS data acquisition device with four analog inputs, one analog output and a serial I2C-bus interface. Three address pins A0, A1 and A2 are used for programming the hardware address, allowing the use of up to eight devices connected to the I2C-bus without additional hardware. Address, control and data to and from the device are transferred serially via the two-line bidirectional I2C-bus. The functions of the device include analog input multiplexing, on-chip track and hold function, 8-bit analog-to-digital conversion and an 8-bit digital-to-analog conversion. The maximum conversion rate is given by the maximum speed of the I2C-bus.PCF8591 is used in closed-loop control system, low-power converter for remote data acquisition, battery powered equipment and analog acquisition in automotive audio TV applications.

LibDriver PCF8591 is a full function driver of PCF8591 launched by LibDriver.It provides AD reading, DA output, AD continuous reading and other functions. LibDriver complies with MISRA.

Table of Contents

Instruction

/src includes LibDriver PCF8591 source files.

/interface includes LibDriver PCF8591 IIC platform independent template.

/test includes LibDriver PCF8591 driver test code and this code can test the chip necessary function simply.

/example includes LibDriver PCF8591 sample code.

/doc includes LibDriver PCF8591 offline document.

/datasheet includes PCF8591 datasheet.

/project includes the common Linux and MCU development board sample code. All projects use the shell script to debug the driver and the detail instruction can be found in each project's README.md.

Install

Reference /interface IIC platform independent template and finish your platform IIC driver.

Add /src, /interface and /example to your project.

Usage

example basic

#include "driver_pcf8591_basic.h"

uint8_t res;
uint8_t i;
int16_t raw;
float adc;

res = pcf8591_basic_init(PCF8591_ADDRESS_A000, PCF8591_MODE_AIN0123_GND);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: init failed.\n");

    return 1;
}

...

res = pcf8591_basic_write(1.2f);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: write failed.\n");
    (void)pcf8591_basic_deinit();

    return 1;
}

...

res = pcf8591_basic_set_channel(PCF8591_CHANNEL_0);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: set channel failed.\n");
    (void)pcf8591_basic_deinit();

    return 1;
}

...

/* read prev data */
res = pcf8591_basic_read((int16_t *)&raw, (float *)&adc);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: read failed.\n");
    (void)pcf8591_basic_deinit();

    return 1;
}
pcf8591_interface_delay_ms(1000);
for (i = 0; i < 3; i++)
{
    /* read data */
    res = pcf8591_basic_read((int16_t *)&raw, (float *)&adc);
    if (res != 0)
    {
        pcf8591_interface_debug_print("pcf8591: read failed.\n");
        (void)pcf8591_basic_deinit();

        return 1;
    }
    pcf8591_interface_debug_print("pcf8591: adc is %0.3f.\n", adc);
    pcf8591_interface_delay_ms(1000);
    
    ...
    
}

...

(void)pcf8591_basic_deinit();

return 0;

example increment

#include "driver_pcf8591_increment.h"

uint8_t res;
int16_t raws[4];
float adcs[4];
uint8_t len;
uint8_t i, j;

res = pcf8591_increment_init(PCF8591_ADDRESS_A000, PCF8591_MODE_AIN0123_GND);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: init failed.\n");

    return 1;
}

...

res = pcf8591_increment_write(1.8f);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: write failed.\n");
    (void)pcf8591_basic_deinit();

    return 1;
}

...

/* read prev data */
len = 4;
res = pcf8591_increment_read((int16_t *)raws, (float *)adcs, (uint8_t *)&len);
if (res != 0)
{
    pcf8591_interface_debug_print("pcf8591: increment read failed.\n");
    (void)pcf8591_increment_deinit();

    return 1;
}
pcf8591_interface_delay_ms(1000);
for (i = 0; i < 3; i++)
{
    /* read data */
    len = 4;
    res = pcf8591_increment_read((int16_t *)raws, (float *)adcs, (uint8_t *)&len);
    if (res != 0)
    {
        pcf8591_interface_debug_print("pcf8591: read failed.\n");
        (void)pcf8591_increment_deinit();

        return 1;
    }
    for (j = 0; j < len; j++)
    {
        pcf8591_interface_debug_print("pcf8591: raw is %d.\n", raws[j]);
        pcf8591_interface_debug_print("pcf8591: adc is %0.3f.\n", adcs[j]);
        
        ...
        
    }
    pcf8591_interface_delay_ms(1000);
    
    ...
    
}

...

(void)pcf8591_increment_deinit();

return 0;

Document

Online documents: https://www.libdriver.com/docs/pcf8591/index.html

Offline documents: /doc/html/index.html

Contributing

Please sent an e-mail to [email protected]

License

Copyright (c) 2015 - present LibDriver All rights reserved

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy

of this software and associated documentation files (the "Software"), to deal

in the Software without restriction, including without limitation the rights

to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

copies of the Software, and to permit persons to whom the Software is

furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all

copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE

SOFTWARE.

Contact Us

Please sent an e-mail to [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].