- پروگرامرها
- دما و رطوبت
- سایر ماژول ها
- سنسور بخار سرد
- کی پد و جوی استیک
- ماژول GPS-GPRS
- ماژول رله و سوییچ
- ماژول شبکه
- ماژول نمایشگر
- ماژول های RF
- ماژول های RFID
- ماژول های پخش صدا
- ماژول های پردازش تصویر
- ماژول های تاریخ و ساعت
- ماژول های تغذیه – ولتاژ – جریان
- ماژول های ذخیره داده
- ماژول های شتاب سنج و ژیروسکوپ
- ماژول های مبدل
- ماژول های محافظ شارژ باتری
- ماژول های مولد پالس
- ماژول ولتمتر و آمپرمتر
ماژول دیجیتال به آنالوگ MCP4725
21
نفر در حال مشاهده این محصول هستند!
دسته: ماژول ها, ماژول های مبدل
توضیحات
MCP4725
MCP4725 which is an I2C controlled Digital-to-Analog converter (DAC).
A very cost-efficient option of DAC allows you to send an analog signal, such as a sine wave, from a digital source, such as the I2C interface on the Arduino microcontroller.
Digital to analog converters are great for sound generation, musical instruments, and many other creative projects!
This version of the MCP4725 up with few fixes for an issue with the board including the IC footprint, the I2C pinout, changes the overall board dimensions to better fit your projects, and a few more minor tweaks than its previous versions.
This board breaks out each pin you will need to access and use the MCP4725 including GND and Signal OUT pins for connecting to an oscilloscope or any other device you need to hook up to the board.
Additionally, the module has onboard SCL, SDA, VCC, and another GND for your basic I2C pinout.
Features
1. 12-bit resolution
2. I2C Interface (Standard, Fast, and High-Speed supported)
3. Small package
4. 2.7V to 5.5V supply
5. Internal EEPROM to store settings
6. Mounting hole diameter: 2.5mm
7. Distance between mounting hole: 11.5mm
Construction & Working.
Connect 5V pin and GND pin of Arduino board to MCP4725 board(pin VCC and GND).
then connect A4 (SDA), A5 (SCL) pins with corresponding I2C pin of MCP4725 board.
Output pin of MCP4725 is connected with Analog pin A0 by the way we can measure and display the Analog voltage obtained from MCP4725 in serial monitor, you can also measure by using digital voltmeter or multimeter.

Example
To read the MCP4725 we will use the library developed by Adafruit, available at [this link].
(https://github.com/adafruit/Adafruit_MCP4725 )
The library provides code examples, which it is advisable to review.
The following example is a modification of those available in the library, which shows the use of the functions generating a triangular wave with the MCP4725.
#include <Wire.h>
#include <Adafruit_MCP4725.h>
Adafruit_MCP4725 dac;
void setup(void)
{
dac.begin(0x60);
}
void loop(void) {
uint32_t counter;
for (counter = 0; counter < 4095; counter++)
{
dac.setVoltage(counter, false);
}
for (counter = 4095; counter > 0; counter--)
{
dac.setVoltage(counter, false);
}
}
نظرات (0)
اولین کسی باشید که دیدگاهی می نویسد “ماژول دیجیتال به آنالوگ MCP4725”
برای فرستادن دیدگاه، باید وارد شده باشید.
محصولات مرتبط
ماژول میکروفون دیجیتال با چیپ LM393
ماژول پخش فایل های صوتی DF PLAYER
ماژول MT8870 دریافت کدهایDTMF
ماژول ضبط و پخش صدای دیجیتال بر پایه چیپ ISD1820
ماژول RFID با قابلیت خواندن و نوشتن فرکانس 13.56MHz
کارت RFID فرکانس 13.56MHz
28,000 تومان



نقد و بررسیها
هنوز بررسیای ثبت نشده است.