Author Topic: Multimeter giveaway for November 2012 - Mastech / Sinometer MS8218 50000 count  (Read 35145 times)

ttp

  • Newbie
  • *
  • Posts: 21
My name is Tom and I live in Brisbane, Australia.

One of the MS8218 few issues are very fiddly and easily breakable battery cover locks.

I would be happy to own Mastech MS8218 as it is quite reliable and accurate meter, I would find data logging capability very useful for solar/battery powered garden projects I have in mind.

The first photo is my old and a bit innacurate QM-01445 (also known as RE 6810), the battery has been used for a while that why is reading a bit low. Second photo is of the storm coming towards my place, taken from my window.

patpon

  • Newbie
  • *
  • Posts: 1
Name: Pat Pon

City, Country: Calgary, Canada

Issues: slow update speed, show bar graph, dodgy shunt,

Useful: I would find the datalogging useful

G7PSK

  • Newbie
  • *
  • Posts: 12
Hi Martin

Nigel Kingsley-Lewis G7PSK

UK.
Helhoughton.

The test leads did not insert correctly or all the way down. (Could that be due to needing a lot of force initially they did on the Mastech meter in my photo. I thoaght that I was going to break something when I plugged them in the first time.)
The main shunt was also badly soldered.

The reason I would like this meter is the data logging capability which would be usefull on generators and wind turbines.
« Last Edit: November 28, 2012, 11:20:35 AM by G7PSK »

Chaser

  • Newbie
  • *
  • Posts: 3
Howzit Martin

Dean Goldbaum from Johannesburg
One of the issues is the flimsy connection between the IR port and the board.
Would like the high res and data logging for my small solar setup
I blew my 2 day old inverter by trying to measure the output voltage while the lead of my dmm was in the amp socket!! Although I HOPE I have learnt from my mistake, the feature that gives you a warning noise for the incorrect lead placement would prevent that kind of thing from happening again!

Below is a pic of my dmm which cost R59 (~$7) on special from makro. It is attached to an arduino, measuring different voltage points. I am impressed how "reasonably close" they are (except for the 1.765V).
I will also include the code for the arduino and processing, would be interested to see how close it is on an accurate meter with higher res.

Thanks for the great job and well done for your 1st million, I will be included in your millions more to come!



Code: [Select]
int positive =11; //connect pin 11 to positive lead of multimeter
//connect GND to negative lead

void setup()
{               
  pinMode(positive, OUTPUT);
  Serial.begin(9600); 
}

void loop()
{
 
  for(int i=0;i<=255;i+=15)
  { 
     analogWrite(positive, i);
     float volts=i*0.01960784; //5v/255   
     
     int res=4;
     int counts=4;//change for higher count meter *1000
     if(volts>=counts)
     {  res--;
     }
     Serial.print(volts,res);//res changes the displayed resolution
     Serial.print("V");
     Serial.print("*");
     delay(5000);
  } 
  delay(12500);
}

Code: [Select]
//BEFORE RUNNING!: you need to create a font by clicking: tools> create font > select AgencyFB-Bold and change the size to 200
//Make sure the COM port is correct
//Base of code from Jeremy Blum
import processing.serial.*;
Serial port;

String volts = "";
String data = "";
PFont font;

void setup()

  size(460,170);
  port = new Serial(this, "COM2", 9600);
  port.bufferUntil('*');
  font = loadFont("AgencyFB-Bold-200.vlw");
  textFont(font, 170);
}

void draw()
{
  background(0,0,0);
  fill(200, 10, 102);
  text(volts, 15, 150);
}


void serialEvent(Serial port)

  data = port.readStringUntil('*');
  volts = data.substring(0,data.length() -1);


algorath

  • Newbie
  • *
  • Posts: 1
Steve, near Innsbruck, Tirol, Austria
Well the build quality does kinda suck for the price range doesnt it...
IŽd use it as 2nd meter

cheers

« Last Edit: December 03, 2012, 01:41:26 AM by algorath »

mazzola

  • Newbie
  • *
  • Posts: 1
Hi all!

Name: Marco Angelucci

City, Country: San Giovanni Teatino, Italy

Issues: back plastic locks are weak

Useful: data logging and back light, oh and if I win I'll stop borrowing my father's one!


extendedpuppet

  • Newbie
  • *
  • Posts: 3
Hey Martin,
Really enjoy your youtube channel.  I just started getting into electronics a few months ago.  Your teaching style has made it easy to learn, thanks for all your work.

* Your name: Brian
 The country and city you live in:  Dallas,  USA 
Note one of the issues that was found with the MS8218? Flimsy internal construction
Note why you would find this multimeter useful?  The accuracy and data logging.

Here's a photo of a multi meter I bought for $10. 

extendedpuppet

  • Newbie
  • *
  • Posts: 3
Whaaaa?  This contest got closed as I was typing my entry! :'(
I actually missed it by under a minute...

Administrator

  • Administrator
  • Newbie
  • *****
  • Posts: 9
************** PLEASE NOTE ********************************

This giveaway is now closed as the draw is going to happen today.

Thanks Martin.

************************************************************

Administrator

  • Administrator
  • Newbie
  • *****
  • Posts: 9
Whaaaa?  This contest got closed as I was typing my entry! :'(
I actually missed it by under a minute...

Just in time...your entry will be included....

extendedpuppet

  • Newbie
  • *
  • Posts: 3
Awesome, thanks! 

Maff^

  • Newbie
  • *
  • Posts: 2
Ah, bummer. I took the picture yesterday, but thought I would be able to do the entry today. Stupid me.

Anyway, good luck to the contestants! Would be an awesome meter to win.

Also, Martin, keep up the good work (these giveaways and off course, more important, the great videos).

Antraciet

  • Newbie
  • *
  • Posts: 46
Congratulations to Steven from England!  :D

RiccardoGiuliani

  • Newbie
  • *
  • Posts: 14
    • Hw2Sw
Congratulations from me too.

And thanks to Martin for the good videos on Mastech.

steve30

  • Full Member
  • ***
  • Posts: 155
    • Stephen Coates' Homepage
Well done me! :)

I will certainly be able to use this, as I was planning on getting a new multimeter, preferably with data logging anyway.

I'm not doing too badly with winning stuff. Last year I won the raffle at the local Co-Op, this year I win a multimeter. Maybe next year I should buy a lottery ticket.

Thanks Martin.

Stephen Coates