Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.
/ MCP3X21 Public archive
forked from pilotak/MCP3X21

Arduino library for MCP3021 I2C ADC

License

Notifications You must be signed in to change notification settings

OAkyildiz/MCP3X21

 
 

Repository files navigation

Arduino library for MCP3021 & MCP3221 I2C ADC

build Framework Badge Arduino

Example

#include <Wire.h>
#include "MCP3X21.h"

const uint8_t address = 0x4D;
const uint16_t ref_voltage = 3300;  // in mV

MCP3021 mcp3021(address);

void setup() {
    Serial.begin(115200);

#if defined(ESP8266)
    Wire.begin(SDA, SCL);
    mcp3021.init(&Wire);
#else
    mcp3021.init();
#endif
}

void loop() {
    uint16_t result = mcp3021.read();

    Serial.print(F("ADC: "));
    Serial.print(result);
    Serial.print(F(", mV: "));
    Serial.println(mcp3021.toVoltage(result, ref_voltage));

    delay(1000);
}

About

Arduino library for MCP3021 I2C ADC

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 100.0%