<?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[[Solved] 2019 - Mega Board &#x2F; 5100 Ethernet Shield -&gt; Confirm Pin&#x2F;etc Setup Please!]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<ol>
<li>I've got an Elegoo Mega2560 r3 board with a Sunfounder 5100 Ethernet shield.</li>
<li>There is NO radio on this board and it won't have one.</li>
<li>I am trying to configure it as a MQTT gateway without transport to be concerned with local sensors only.</li>
<li>This board/shield combo will init and get onto the network just fine using other sample basic (non-MySensors) tutorial sketches I've found, but not when running MySensors.</li>
</ol>
<p dir="auto">-&gt; I am trying to get the board to initialize, at this point I haven't complicated the basic MQTT gateway sample sketch with any I/O sensor configs; I am simply watching the Serial Monitor to see if the board inits and gets on the network.</p>
<p dir="auto">-&gt; I know the Mega has potentially some configuration changes versus an Uno, but all of the threads I've researched and found are 2-3-4 years old and I don't know if things have been updated in the MySensors framework to support a Mega + 5100 Ethernet shield natively. Hopefully so!</p>
<h2>Specific Requests:</h2>
<ol>
<li>
<p dir="auto">If anyone could clarify what I need to change in my code to get this board/Eth shield working I would be MOST appreciative!</p>
</li>
<li>
<p dir="auto">I downgraded my Boards Manager version to 1.6.11 from 1.6.23 after reading some older threads about the Mega/5100 combo, what should I set this to?</p>
</li>
</ol>
<p dir="auto">Here's my code.</p>
<pre><code>/*
 * The MySensors Arduino library handles the wireless radio link and protocol
 * between your home built sensors/actuators and HA controller of choice.
 * The sensors forms a self healing radio network with optional repeaters. Each
 * repeater and gateway builds a routing tables in EEPROM which keeps track of the
 * network topology allowing messages to be routed to nodes.
 *
 * Created by Henrik Ekblad &lt;henrik.ekblad@mysensors.org&gt;
 * Copyright (C) 2013-2019 Sensnology AB
 * Full contributor list: https://github.com/mysensors/MySensors/graphs/contributors
 *
 * Documentation: http://www.mysensors.org
 * Support Forum: http://forum.mysensors.org
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 *******************************
 *
 * REVISION HISTORY
 * Version 1.0 - Henrik Ekblad
 *
 * DESCRIPTION
 * The W5100 MQTT gateway sends radio network (or locally attached sensors) data to your MQTT broker.
 * The node also listens to MY_MQTT_TOPIC_PREFIX and sends out those messages to the radio network
 *
 * LED purposes:
 * - To use the feature, uncomment WITH_LEDS_BLINKING in MyConfig.h
 * - RX (green) - blink fast on radio message received. In inclusion mode will blink fast only on presentation received
 * - TX (yellow) - blink fast on radio message transmitted. In inclusion mode will blink slowly
 * - ERR (red) - fast blink on error during transmission error or receive crc error
 *
 * See http://www.mysensors.org/build/esp8266_gateway for wiring instructions.
 * nRF24L01+  ESP8266
 * VCC        VCC
 * CE         GPIO4
 * CSN/CS     GPIO15
 * SCK        GPIO14
 * MISO       GPIO12
 * MOSI       GPIO13
 *
 * Not all ESP8266 modules have all pins available on their external interface.
 * This code has been tested on an ESP-12 module.
 * The ESP8266 requires a certain pin configuration to download code, and another one to run code:
 * - Connect REST (reset) via 10K pullup resistor to VCC, and via switch to GND ('reset switch')
 * - Connect GPIO15 via 10K pulldown resistor to GND
 * - Connect CH_PD via 10K resistor to VCC
 * - Connect GPIO2 via 10K resistor to VCC
 * - Connect GPIO0 via 10K resistor to VCC, and via switch to GND ('bootload switch')
 *
  * Inclusion mode button:
 * - Connect GPIO5 via switch to GND ('inclusion switch')
 *
 * Hardware SHA204 signing is currently not supported!
 *
 * Make sure to fill in your ssid and WiFi password below for ssid &amp; pass.
 */


// Enable debug prints to serial monitor, baud rate is 115200 for console
#define MY_DEBUG

// Enables and select radio type (if attached)
//#define MY_RADIO_RF24
//#define MY_RADIO_RFM69
//#define MY_RADIO_RFM95

#define MY_GATEWAY_MQTT_CLIENT

// Set this node's subscribe and publish topic prefix
#define MY_MQTT_PUBLISH_TOPIC_PREFIX "hvac/dampers"
#define MY_MQTT_SUBSCRIBE_TOPIC_PREFIX "hvac/dampers"

// Set MQTT client id
#define MY_MQTT_CLIENT_ID "mysensors-board1"

// Enable gateway ethernet module type
#define MY_GATEWAY_W5100

// W5100 Ethernet module SPI enable (optional if using a shield/module that manages SPI_EN signal)
#define MY_W5100_SPI_EN 4

// Enable Soft SPI for NRF radio (note different radio wiring is required)
// The W5100 ethernet module seems to have a hard time co-operate with
// radio on the same spi bus.
//#if !defined(MY_W5100_SPI_EN) &amp;&amp; !defined(ARDUINO_ARCH_SAMD)
#define MY_SOFTSPI
#define MY_SOFT_SPI_SCK_PIN 52 //14 was default, changed to test Mega board
#define MY_SOFT_SPI_MISO_PIN 50 //16 was default, changed to test Mega board
#define MY_SOFT_SPI_MOSI_PIN 51 //15 was default, changed to test Mega board
//#endif

// When W5100 is connected we have to move CE/CSN pins for NRF radio
#ifndef MY_RF24_CE_PIN
#define MY_RF24_CE_PIN 5
#endif
#ifndef MY_RF24_CS_PIN
#define MY_RF24_CS_PIN 6
#endif

// Enable these if your MQTT broker requires username/password
//#define MY_MQTT_USER "username"
//#define MY_MQTT_PASSWORD "password"

// Enable MY_IP_ADDRESS here if you want a static ip address (no DHCP)
#define MY_IP_ADDRESS 10,2,20,24
#define MY_MAC_ADDRESS 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED

// If using static ip you can define Gateway and Subnet address as well
#define MY_IP_GATEWAY_ADDRESS 10,2,20,1
#define MY_IP_SUBNET_ADDRESS 255,255,255,0

// MQTT broker ip address or url. Define one or the other.
//#define MY_CONTROLLER_URL_ADDRESS "m20.cloudmqtt.com"
#define MY_CONTROLLER_IP_ADDRESS 10, 2, 10, 34

// The MQTT broker port to to open
#define MY_PORT 1883

/*
// Enable inclusion mode
#define MY_INCLUSION_MODE_FEATURE
// Enable Inclusion mode button on gateway
//#define MY_INCLUSION_BUTTON_FEATURE
// Set inclusion mode duration (in seconds)
#define MY_INCLUSION_MODE_DURATION 60
// Digital pin used for inclusion mode button
//#define MY_INCLUSION_MODE_BUTTON_PIN  3

// Set blinking period
#define MY_DEFAULT_LED_BLINK_PERIOD 300

// Flash leds on rx/tx/err
// Uncomment to override default HW configurations
//#define MY_DEFAULT_ERR_LED_PIN 16  // Error led pin
//#define MY_DEFAULT_RX_LED_PIN  16  // Receive led pin
//#define MY_DEFAULT_TX_LED_PIN  16  // the PCB, on board LED
*/

#include &lt;Ethernet.h&gt;
#include &lt;MySensors.h&gt;
#include &lt;Bounce2.h&gt;

void setup()
{
    // Setup locally attached sensors
}

void presentation()
{
    // Present locally attached sensors here
}

void loop()
{
    // Send locally attached sensors data here
}
</code></pre>
<p dir="auto">Here's what pops in the Serial console:</p>
<pre><code>10:41:18.848 -&gt; 378897 GWT:RMQ:MQTT RECONNECT
10:41:19.428 -&gt; 379460 GWT:TPC:IP=0.0.0.0
10:41:20.421 -&gt; 380463 GWT:RMQ:MQTT RECONNECT
10:41:21.003 -&gt; 381026 GWT:TPC:IP=0.0.0.0
10:41:21.994 -&gt; 382028 GWT:RMQ:MQTT RECONNECT
10:41:22.579 -&gt; 382592 GWT:TPC:IP=0.0.0.0
10:41:23.568 -&gt; 383594 GWT:RMQ:MQTT RECONNECT
10:41:24.146 -&gt; 384157 GWT:TPC:IP=0.0.0.0
10:41:25.137 -&gt; 385160 GWT:RMQ:MQTT RECONNECT
</code></pre>
]]></description><link>https://forum.mysensors.org/topic/10430/solved-2019-mega-board-5100-ethernet-shield-confirm-pin-etc-setup-please</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 05:23:16 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/10430.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 28 May 2019 15:46:25 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [Solved] 2019 - Mega Board &#x2F; 5100 Ethernet Shield -&gt; Confirm Pin&#x2F;etc Setup Please! on Tue, 28 May 2019 16:25:59 GMT]]></title><description><![CDATA[<p dir="auto">UPDATE:<br />
I power cycled the board by physically removing the USB power/data cable and the board came up on the network + MQTT session to the broker was established!!</p>
<p dir="auto">For what it's worth and for future reference if anyone finds this thread:</p>
<p dir="auto">It appears the official MySensors Hello World ethernet gateway basic tutorial works great for the Mega/2560 board paired with a 5100 Ethernet shield.</p>
]]></description><link>https://forum.mysensors.org/post/99449</link><guid isPermaLink="true">https://forum.mysensors.org/post/99449</guid><dc:creator><![CDATA[armoredsaint]]></dc:creator><pubDate>Tue, 28 May 2019 16:25:59 GMT</pubDate></item></channel></rss>