<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>SparkFun Electronics Comments</title>
<link href="https://www.sparkfun.com/"></link>
<id>urn:uuid:214d0e4e-f1b1-d287-ce26-ac5b4c9f8249</id>
<updated>2017-07-14T10:58:37-06:00</updated>
<author><name>SparkFun Electronics</name>
</author>
<link href="https://www.sparkfun.com/feeds/comments" rel="self" type="application/atom+xml"></link>
<entry>
<title>LightningHawk on SEN-13261 - SparkFun OpenScale</title>
<author><name>LightningHawk</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-594029cb807fa8c37a8b4567"></link>
<id>urn:uuid:7b530b11-bfd5-3191-5ae7-05b1e128827f</id>
<updated>2017-06-13T12:07:07-06:00</updated>
<content type="html">&lt;p&gt;&lt;a href=&quot;https://www.amazon.com/Ozeri-Digital-Multifunction-Kitchen-Elegant/dp/B004164SRA/ref=sr_1_4?ie=UTF8&amp;amp;qid=1497376593&amp;amp;sr=8-4&amp;amp;keywords=kitchen+scale&quot; rel=&quot;nofollow&quot; &gt;Here&amp;rsquo;s&lt;/a&gt; the kitchen scale I used.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #1019680 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #1019680</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-593eeec77f7fa885718b4567"></link>
<id>urn:uuid:58fc4e35-9e41-88fb-1ae0-85a894e4e7d2</id>
<updated>2017-06-12T13:43:03-06:00</updated>
<content type="html">&lt;p&gt;For the kitchen scale, is there any amazon link you can share that is easy to tear open and use? The user guide doesnt provide any particular kitchen scale compatible with the the 10kG load cell.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #123207 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #123207</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-593ea6c87e7fa8a7068b4567"></link>
<id>urn:uuid:afe34577-409b-0db3-f4b4-f8f9c1ce5786</id>
<updated>2017-06-12T08:35:52-06:00</updated>
<content type="html">&lt;p&gt;I have seen similar &amp;ldquo;jitter&amp;rdquo; in my readings; big jumps for brief periods of time. I&amp;rsquo;m assuming it&amp;rsquo;s a noise issue with ADC not helped by my un-shielded wiring. I also believe some the erroneous values are made worse by possible overflow/underflow in the averaging routine in the HX711 library.  One thing that helped me was to modify the firmware to read (10) raw samples, scale them individually before summing/averaging, discard the lowest and highest individual readings, and then summing and averaging the remaining (8) scaled samples (see rudimentary code below):&lt;/p&gt;

&lt;p&gt;   long i, j, min, max;
   long rawReading[10];&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;//----------------------------------------------
// Take 10 readings w/ scale factor
j=0;
for(i=0;i&amp;lt;10;i++)
{
  rawReading[i] = scale.read(); // Take a single reading from the ADC
  rawReading[i] /= 8870;        // Scaling (hard-coded scale factor)
}

//----------------------------------------------
// Find lowest and highest reading
min=9999;
max=0;
for(i=0;i&amp;lt;10;i++)
{
  if(rawReading[i] &amp;gt; max)
    max = rawReading[i];
  if(rawReading[i] &amp;lt; min)
    min = rawReading[i];
}

//----------------------------------------------
// Sum and remove lowest and highest and average readings
for(i=0;i&amp;lt;10;i++)
  j += rawReading[i];
j -= min;    
j -= max;    
j/=8;   // Final value
&lt;/code&gt;&lt;/pre&gt;</content>
</entry>
<entry>
<title>Ramza on SEN-13261 - SparkFun OpenScale</title>
<author><name>Ramza</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-592f4bcb7e7fa87c268b4567"></link>
<id>urn:uuid:d38da5d7-7873-9eb7-7329-4815074a4e16</id>
<updated>2017-05-31T17:03:39-06:00</updated>
<content type="html">&lt;p&gt;You can simply comment this out in the Openscale code.
Look for
setting_tare_point = (long)8647409;
add // to comment it out&lt;/p&gt;</content>
</entry>
<entry>
<title>Ramza on SEN-13261 - SparkFun OpenScale</title>
<author><name>Ramza</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-592f4afd7e7fa810268b4567"></link>
<id>urn:uuid:5d658f23-af51-fd61-90e6-ba390f39a5cd</id>
<updated>2017-05-31T17:00:13-06:00</updated>
<content type="html">&lt;p&gt;Yes, I was able to do this.
I used an arduino uno and I connected the Serial out of the Openscale to the arduino. So GND &amp;lt;-&gt; GND, and the TX of Openscale to RX of Arduino.&lt;/p&gt;

&lt;p&gt;For your code, just do the regular Serial setup for 9600 baud, and do Serial reads for the data.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #1002333 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #1002333</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-5925c7997f7fa8e2788b4567"></link>
<id>urn:uuid:39e27687-8a44-591c-8f4e-024854235458</id>
<updated>2017-05-24T11:49:13-06:00</updated>
<content type="html">&lt;p&gt;Has anyone tried to re-use the Temp signal as a GPIO? Theoretically you should be able to, but I was just curious if anyone has?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #918806 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #918806</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-58de69c7fa2a50ae738b4567"></link>
<id>urn:uuid:3e2720fb-cb18-fe27-a6dc-238db8608811</id>
<updated>2017-03-31T08:37:59-06:00</updated>
<content type="html">&lt;p&gt;My OpenScale SEN-13261 has been reading undisturbed since about 5:20 pm yesterday with a 100 lb load; however, I&amp;rsquo;m occasionally getting outlier readings (+/- ~2700 lbs).  Refer to the plots below; Is this noise from the HX711 ADC, or a firmware bug?  Plotted values are the max/avg/min of the last 50 readings from OpenScale serial port.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;load cell #1 plot:&lt;/strong&gt;&lt;br/&gt;
&lt;a href=&quot;https://drive.google.com/file/d/0BwybDKGshwnmVmNpbDZ5UERGM2s/view?usp=sharing&quot; rel=&quot;nofollow&quot; &gt;load_cell_1&lt;/a&gt;&lt;br/&gt;
&lt;strong&gt;(on board) temperature #1 plot:&lt;/strong&gt;&lt;br/&gt;
&lt;a href=&quot;https://drive.google.com/file/d/0BwybDKGshwnmMm03WXUxVUdFUzA/view?usp=sharing&quot; rel=&quot;nofollow&quot; &gt;temperature_1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Steps I&amp;rsquo;ve taken to resolve the issue:&lt;/strong&gt;&lt;br/&gt;
* Increase the time between OpenScale readings from 100 ms to 150 ms&lt;br/&gt;
* Flash the latest firmware from Github to OpenScale&lt;br/&gt;
* Re-read OpenScale documentation &amp;amp; search google&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Any ideas on what to do about the outliers?&lt;/strong&gt;&lt;br/&gt;
&lt;em&gt;Is anyone else seeing this same issue?&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Thanks in advance!&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #365903 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #365903</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-58dd2884fa2a509a048b4567"></link>
<id>urn:uuid:ffaec58c-a2eb-9375-b9a6-ddec8fc91bd7</id>
<updated>2017-03-30T09:47:16-06:00</updated>
<content type="html">&lt;p&gt;At 5v input required, how does one get this to run outside on a single 3.7v cell with Sunny Buddy? Seems strange that this was (as I understand it) initially designed to measure a beehive weight in an outdoor project, but then relies on 5v and has no wifi/ESP8266 option or terminal.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #903845 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #903845</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-58a337c6fa2a50e04e8b4567"></link>
<id>urn:uuid:d7c3e523-afa6-5245-da2f-72b3783c6ff2</id>
<updated>2017-02-14T10:00:54-07:00</updated>
<content type="html">&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;I want to&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Battery power this from a 5v regulated source&lt;/li&gt;
&lt;li&gt;take the output from the serial out connections (i will send over BLE)&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;when i try to power this using 5v it works but does not start to send data on power, it just idles unless i connect via usb to the ftdi chip.&lt;/p&gt;

&lt;p&gt;how do i make it start sending readings without connecting it to a usb port?&lt;/p&gt;

&lt;p&gt;regards,&lt;/p&gt;

&lt;p&gt;james.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #650726 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #650726</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-5866a596fa2a509f1f8b4567"></link>
<id>urn:uuid:dbf5ffcb-ae6e-1998-31f6-882c58b2c542</id>
<updated>2016-12-30T11:21:10-07:00</updated>
<content type="html">&lt;p&gt;Hello,
Is possible to connect it to arduino?
i&amp;rsquo;m using a xbee on arduino to send some data.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #790198 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #790198</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-58376a38fa2a50d7738b4567"></link>
<id>urn:uuid:4d999b98-b21e-6145-a999-d55051200c23</id>
<updated>2016-11-24T15:31:20-07:00</updated>
<content type="html">&lt;p&gt;Can you interface wit this on i2c or SPI? I&amp;rsquo;m imagining setting up a screen for weight readout, but perhaps I should go with my own arduino and the HX711 load cell amplifier if I want to create a standalone device?&lt;/p&gt;</content>
</entry>
<entry>
<title>LightningHawk on SEN-13261 - SparkFun OpenScale</title>
<author><name>LightningHawk</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-582de640f3b1a8b0328b4568"></link>
<id>urn:uuid:d9785baa-cc86-bfe8-4f96-40e9653dce40</id>
<updated>2016-11-17T10:17:52-07:00</updated>
<content type="html">&lt;p&gt;The Atmega328 on Openscale is there to handle communication. There is no I/O broken out for something like blinking an LED or reading potentiometer output. However, I think you might be able to record and process data from the load cells in Labview. Labview does give you access to I2C and SPI functionality on the MCU-the SPI pins are accessible on OpenScale through the AVR programming header and SDA and SCL can be accessed from the drains of Q1 and Q2 - This will give you the Temp data. I haven&amp;rsquo;t used OpenScale with Labview but I might try now. I don&amp;rsquo;t see how it could be a greater benefit to use Labview in this case but I don&amp;rsquo;t see why it wouldn&amp;rsquo;t be possible.  If resolution is what you are looking for though the Atmel MCU used on OpenScale is the same as the chip used on an Arduino so the resolution should be the same.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #836772 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #836772</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-582ddec7fa2a5074528b4567"></link>
<id>urn:uuid:bf3442b0-43f0-bbb2-cb89-da50ff933b8e</id>
<updated>2016-11-17T09:45:59-07:00</updated>
<content type="html">&lt;p&gt;Is there a way to read the OpenScale in Labview?
I just downloaded makerhub and have been experimenting with Arduino connected into LabView. I&amp;rsquo;m playing with an example which needs more resolution then a standard Arduino, can I plug my OpenScale into the program and record a potentiometer output using it?&lt;/p&gt;</content>
</entry>
<entry>
<title>LightningHawk on SEN-13261 - SparkFun OpenScale</title>
<author><name>LightningHawk</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-5820b819fa2a508b7e8b4567"></link>
<id>urn:uuid:d5e723ed-3a81-7b48-3975-dc7ff9c0816c</id>
<updated>2016-11-07T10:21:29-07:00</updated>
<content type="html">&lt;p&gt;Hi, Thanks for bringing this to our attention. It has been updated.&lt;/p&gt;</content>
</entry>
<entry>
<title>frada on SEN-13261 - SparkFun OpenScale</title>
<author><name>frada</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-58209108fa2a50cc7f8b4567"></link>
<id>urn:uuid:4a6b25e9-6825-0757-cff3-491a143f8c33</id>
<updated>2016-11-07T07:34:48-07:00</updated>
<content type="html">&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;opening the Eagle files available for OpenScale I see that probably they are related to a previous revision of the schematic/pcb because the combinor for individual load sensors is not present.&lt;/p&gt;

&lt;p&gt;Is there any chance to have the Eagle files updated to the current release of the PCB?&lt;/p&gt;

&lt;p&gt;Thank you for your answer.&lt;/p&gt;

&lt;p&gt;Regards&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #836709 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #836709</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57d83949f3b1a8ab2b8b4569"></link>
<id>urn:uuid:be15801c-474c-d478-845e-978c99109e88</id>
<updated>2016-09-13T11:37:13-06:00</updated>
<content type="html">&lt;p&gt;In the latest firmware the loadcell tare value is not taken from EEPROM, its hardcoded to 8647409.
is it a bug?&lt;/p&gt;</content>
</entry>
<entry>
<title>LightningHawk on SEN-13261 - SparkFun OpenScale</title>
<author><name>LightningHawk</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57bb2000f3b1a891398b4567"></link>
<id>urn:uuid:7ea9d16c-9903-b741-1b79-350b3afc7f3e</id>
<updated>2016-08-22T09:53:36-06:00</updated>
<content type="html">&lt;p&gt;Yes. You&amp;rsquo;ll need to re-calibrate once every season (at least) to take into account changes in temperature and humidity in the environment. Creep is the change in load cell signal occurring with time while under constant load and with all environmental conditions and other variables also remaining constant. Load cells tend to creep meaning they will change their output slightly over time when a weight is left on the scale for long (30+ minutes) periods of time. Creep is load cell specific so keep your data sheet handy and perform some tests. There&amp;rsquo;s an example calibration in the hook-up guide. If you need more info, I found this helpful: http://www.scalemanufacturers.org/pdf/loadcellapplicationtestguidelineapril2010.pdf&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #836709 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #836709</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57bad589f3b1a8a96a8b4567"></link>
<id>urn:uuid:b42bc2d6-8500-3521-7627-170a568e6bca</id>
<updated>2016-08-22T04:35:53-06:00</updated>
<content type="html">&lt;p&gt;What is the meaning of &amp;ldquo;A load cell with OpenScale can remain in place for months without needing user interaction&amp;rdquo;, does it mean OpenScale needs calibration after using it for some months?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #834586 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #834586</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57b82720f3b1a89e3d8b4567"></link>
<id>urn:uuid:8d651cab-9f6d-4984-d12e-bcf37641523a</id>
<updated>2016-08-20T03:47:12-06:00</updated>
<content type="html">&lt;p&gt;I have a bathroom scale with four load sensors, each sensor has four wires (not three). How do you suggest I connect it to the Openscale please? I can&amp;rsquo;t see any reference to four wire sensors in the hookup guide. Thank you.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #727973 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #727973</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57a62c7fce395f4d708b4569"></link>
<id>urn:uuid:15507de2-5581-36c9-7a8f-a819b6c9c959</id>
<updated>2016-08-06T12:29:19-06:00</updated>
<content type="html">&lt;p&gt;In the Hookup Guide&quot;, the link to &amp;ldquo;the text configuration menu&amp;rdquo; is broken&amp;hellip;&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #727973 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #727973</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57a6215a757b7f020b8b4567"></link>
<id>urn:uuid:e9086a53-efa4-466c-4021-dbd273e241d4</id>
<updated>2016-08-06T11:41:46-06:00</updated>
<content type="html">&lt;p&gt;I found : the colors from the cell are not the same as the openscale !
It seems it works !
Thank for the reply !&lt;/p&gt;</content>
</entry>
<entry>
<title>LightningHawk on SEN-13261 - SparkFun OpenScale</title>
<author><name>LightningHawk</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57a4d3b7ce395ff0728b4567"></link>
<id>urn:uuid:caca4e67-9547-40fa-2bc9-6a57200ca26a</id>
<updated>2016-08-05T11:58:15-06:00</updated>
<content type="html">&lt;p&gt;&amp;ldquo;No Remote Sensor Found&amp;rdquo; refers to an external temp sensor that is connected to the screw terminals on the board. I&amp;rsquo;ve never used that load cell before and I couldn&amp;rsquo;t help much with mounting it. I&amp;rsquo;m sure you can some documentation on mounting the load cell. Have you been in the calibration menu yet?&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #727973 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #727973</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-57a4d08ece395f50708b4567"></link>
<id>urn:uuid:b0c48520-0d4d-81bc-a631-f88dab100c60</id>
<updated>2016-08-05T11:44:46-06:00</updated>
<content type="html">&lt;p&gt;Dear sir,
I am trying to use openscale with :&lt;/p&gt;

&lt;p&gt;http://www.aliexpress.com/item/2PCS-lot-100KG-150kg-electronic-platform-scale-load-cell-pressure-balanced-cantilever-load-weight-sensor/1649112894.html?spm=2114.13010608.0.56.zVLOrD&lt;/p&gt;

&lt;p&gt;I get : &amp;ldquo;No remote sensor found&amp;rdquo;
Could it be a problem with the cells or which mistake can I make ?
Yours faithfully
Pierre&lt;/p&gt;</content>
</entry>
<entry>
<title>ksteddom on SEN-13261 - SparkFun OpenScale</title>
<author><name>ksteddom</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-579220c8ce395f41778b4568"></link>
<id>urn:uuid:441f2e29-88a6-7ec1-3d07-7294774033ab</id>
<updated>2016-07-22T07:34:00-06:00</updated>
<content type="html">&lt;p&gt;The link to the hookup guide is MIA.&lt;/p&gt;</content>
</entry>
<entry>
<title>Customer #472537 on SEN-13261 - SparkFun OpenScale</title>
<author><name>Customer #472537</name>
</author>
<link href="https://www.sparkfun.com/products/13261#comment-5792102b757b7ff20f8b4567"></link>
<id>urn:uuid:3bae95f5-5b56-5bbc-cb04-7ca5037bc30f</id>
<updated>2016-07-22T06:23:07-06:00</updated>
<content type="html">&lt;p&gt;Question: The ability to capture data, coupled with sending that data, via blue - tooth module, or wifi, with a potential AWS backend?&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;</content>
</entry>
</feed>