Cristian Fatu
Published

Digital Multimeter on Arduino Using DMMShield from Digilent

This project demonstrates how easy you can use the DMMShield from Digilent with all Arduino boards.

BeginnerProtip1 hour7,181
Digital Multimeter on Arduino Using DMMShield from Digilent

Things used in this project

Story

Read more

Schematics

Github

Code

Untitled file

Arduino
#include <DMMShield.h>


DMMShield dmmShieldObj;

// the setup function runs once when you press reset or power the board
void setup() 
{
	Serial.begin(9600);
	dmmShieldObj.begin(&Serial);
	Serial.println("DMMShield Library Command Interpreter Demo");
}

// the loop function runs over and over again forever
void loop() 
{
	dmmShieldObj.CheckForCommand();
	delay(500);                       // wait half a second
}

Credits

Cristian Fatu

Cristian Fatu

1 project • 2 followers

Comments