All public logs
From Federal Burro of Information
Jump to navigationJump to search
Combined display of all available logs of Federal Burro of Information. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:09, 5 December 2024 David talk contribs created page Mcp4725 (Created page with " test script: <pre> #include <Wire.h> #include <Adafruit_MCP4725.h> Adafruit_MCP4725 dac; // Set this value to 9, 8, 7, 6 or 5 to adjust the resolution #define DAC_RESOLUTION (9) const int pinoAnalogo = A1; void setup(void) { Serial.begin(9600); // MCP4725A1 address is 0x62 (default) // MCP4725A1 address is 0x63 (ADDR pin tied to VCC) // MCP4725A1 address is 0x60 (ADDR pin tied to GND) dac.begin(0x60); //I have my ADDR pin connected to GND so address...")