<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Using seeed studio onewire thermocouple amp with m5 stack]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">I managed to pickup a couple of thermocouple amps that are made by seed studios. These use a grove connector but not i2c rather one wire bus.</p>
<p dir="auto">I'm trying to hook this up to my m5stack basic via the grove port and program using arduino ide however it's not working like it should.</p>
<p dir="auto">Seed studios has an Arduino library for the thermocouple amp that I have imported in fine. This includes the OneWire bus library.</p>
<p dir="auto">To initialize OneWire I need to provide a pin. I'm assuming that pin26 is the correct pin if using the grove connector on the m5 stack? Am i right. The yellow wire on grove cable maps to pin26 doesnt it?</p>
<p dir="auto">I've tried this and can't get any devices found when I do the scan using the library.</p>
<p dir="auto">Do I have to do anything special in code to get this going apart from the normal m5.begin</p>
<p dir="auto">Wondering whether others may have used thermocouples not thermistors before to.</p>
<p dir="auto">Rob</p>
]]></description><link>https://community.m5stack.com/topic/808/using-seeed-studio-onewire-thermocouple-amp-with-m5-stack</link><generator>RSS for Node</generator><lastBuildDate>Fri, 08 May 2026 05:09:24 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/808.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 25 Mar 2019 02:29:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Using seeed studio onewire thermocouple amp with m5 stack on Thu, 18 Apr 2019 06:31:06 GMT]]></title><description><![CDATA[<p dir="auto">@rob-biernat which M5Stack or Stick are you using?</p>
<p dir="auto">The M5Stacks and Sticks have an I2C grove port (port A) but this is also a digital I/O port in that it can read or write 0 or 1 values (on or off) I am currently triggering a relay unit from the port.</p>
<p dir="auto">The M5Go base has has 2 additional port which are multi I/O (port b) and UART (port C) Unlike Arduinos, the esp32 which powers the M5Stack has no set pin functions and all pins can be used for a range of functions.</p>
<p dir="auto">When using Port A Yellow is SCL (pin 22) and white is SDA (pin 21) and need to be defined.</p>
<p dir="auto">I have started to document the different functions of the grove connector and you can find them on pg 19 and 20 of my WIP book here <a href="https://github.com/Ajb2k3/UIFlowHandbook/blob/master/UIHB1404192.pdf" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Ajb2k3/UIFlowHandbook/blob/master/UIHB1404192.pdf</a></p>
]]></description><link>https://community.m5stack.com/post/3831</link><guid isPermaLink="true">https://community.m5stack.com/post/3831</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Thu, 18 Apr 2019 06:31:06 GMT</pubDate></item><item><title><![CDATA[Reply to Using seeed studio onewire thermocouple amp with m5 stack on Thu, 18 Apr 2019 03:09:21 GMT]]></title><description><![CDATA[<p dir="auto">So sorry for my late reply. We are too busy. If you are anxious about the hub problem, you can send the email to me. <a href="mailto:tech@m5stack.com" target="_blank" rel="noopener noreferrer nofollow ugc">tech@m5stack.com</a></p>
<p dir="auto">You means a couple of thermocouple amps works well with M5Stack. So which port do you use? Port A or B? I think onewire function can works well whether the OneWire pin belongs to Port A or B.</p>
<p dir="auto">I have draw a picture for OneWire device cascade just now.</p>
<p dir="auto"><img src="/assets/uploads/files/1555556937266-%E5%BE%AE%E4%BF%A1%E5%9B%BE%E7%89%87%E7%BC%96%E8%BE%91_20190418110523-resized.jpg" alt="0_1555556935067_微信图片编辑_20190418110523.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">I think the <a href="https://docs.m5stack.com/#/en/unit/hub" target="_blank" rel="noopener noreferrer nofollow ugc">HUB</a> unit will help you. It's just my guess. I dare not be 100% sure</p>
<p dir="auto"><img src="/assets/uploads/files/1555556955869-m5go_unit_hub.png" alt="0_1555556954762_M5GO_Unit_hub.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://community.m5stack.com/post/3819</link><guid isPermaLink="true">https://community.m5stack.com/post/3819</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Thu, 18 Apr 2019 03:09:21 GMT</pubDate></item><item><title><![CDATA[Reply to Using seeed studio onewire thermocouple amp with m5 stack on Mon, 25 Mar 2019 07:20:22 GMT]]></title><description><![CDATA[<p dir="auto">Ok, so I can get this to work if I run the PWR, GRND and DINOUT (Yellow) from the thermocouple amp and into pins 5V/3.3V, G and G5 using jumper wires instead of physical GROVE port on m5stack.</p>
<p dir="auto">I then changed my code so the OneWire bus was using pin GPIO pin 5. Everything worked as expected. All good.</p>
<p dir="auto">However, I am looking for something a bit more robust for prototyping then jumper wires i.e physical GROVE connectors with a hub for multiple. I noticed on the product site that alot of the units have a GROVE connector however they are NOT i2C i.e potentiometer unit so I figured I could do the same with this type of connection which is not I2C but one wire. I guess my assumption was wrong. I do see in the doco refrences to GROVE A and GROVE B? What is the difference from a connection point of view and from a programming point of view?</p>
<p dir="auto">However now that I have got it working I can only assume the physical GROVE port on the M5stack is just for I2C devices. Am I correct? Is I2C enabled by default or should I be turning it off for non I2C stuff?</p>
<p dir="auto">I also have a GROVE I2C mosfet that I need to incorporate into my build which I'm pretty sure will work with the GROVE port. But I really wanted to be able to have a hub where I just added the various sensors etc without jumper wires</p>
<p dir="auto">Thanks</p>
<p dir="auto">Rob</p>
]]></description><link>https://community.m5stack.com/post/3428</link><guid isPermaLink="true">https://community.m5stack.com/post/3428</guid><dc:creator><![CDATA[rob.biernat]]></dc:creator><pubDate>Mon, 25 Mar 2019 07:20:22 GMT</pubDate></item></channel></rss>