logo elektroda
logo elektroda
X
logo elektroda

Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses

p.kaczmarek2 1881 23

TL;DR

  • ESP32-S3-RS485-CAN is an industrial ESP32-S3 module with Wi‑Fi, Bluetooth, isolated RS485 and CAN, DIN-rail mounting, and a PCF85063 RTC with battery backup.
  • PlatformIO setup starts from an esp32-s3-devkitc-1 configuration, then adjusts flash size, framework settings, and CDC mode so Serial.printf works over native USB.
  • The board ships with 16 MB Flash, 8 MB RAM, operates up to 36 V DC, and costs around £80.
  • Demo code shows LED blinking, RS485 transmission using HardwareSerial, CAN communication with TWAI, and RTC access over I2C via the Wire library.
  • A battery keeps the RTC running without mains power, but the DIN-rail housing leaves no external reset button, and RS485/CAN need 120 Ω termination resistors.
Generated by the language model.
ADVERTISEMENT
This content has been translated flag-pl » flag-en View the original version here
📢 Listen (AI):
  • Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    ESP32-S3-RS485-CAN is an industrial module equipped with Wi-Fi and BT communication (thanks to ESP-S3) and isolated RS485 and CAN. It is designed for DIN rail mounting. It operates on voltages up to 36 V DC. Also on board is a PCF85063 RTC to keep time, along with a connector for a battery, an antenna connector and a 20-pin connector. You can buy this module for around £80.
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    In the kit, we get cables with a connector compatible with the SH1.0 connector, on which 3.3 V, ground, GPIO1 and GPIO2 from the ESP are brought out. In addition, we also get a small screwdriver.
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    Photos from inside:
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    Scheme:
    Electrical schematic of Waveshare ESP32-S3-RS485-CAN with power, RTC, CAN, and RS485 sections
    Now we can move on to the actual part of the presentation, which is to show how a beginner can get started with this board in the free PlatformIO environment (Visual Code extension).


    Hello World (LED flashing)
    You need to start with the configuration for the platformio. You can base it on the esp32-s3-devkitc-1 board, but you need to set a few things, including the Flash size and framework.
    Code: Ini
    Log in, to see the code

    It is important to enable CDC mode in build_flags. Otherwise we will not get Serial.printf messages. The board shown does not have a USB to UART converter, but connects directly to USB. The ESP32-S3 supports this in hardware.

    Now the actual code of the demo. The whole thing is very simple, it just manually switches the TX/RX pins on and off from both buses. This gets the LEDs to blink.
    Code: C / C++
    Log in, to see the code




    Start RS485 communication
    Three pins are required - RX, TX and Enable. Their indexes are marked on the diagram. RS485 is the physical layer of the UART, so a HardwareSerial is sufficient on the ESP. Set the baud, parity bits and pins.
    Code: C / C++
    Log in, to see the code

    The above demo sends a sample write over RS485 and then sends over USB the data received there. In practical RS485 installations, be sure to have termination resistors (typically 120 Ω) at both ends of the bus. Without this, communication errors can occur.



    Starting CAN communication
    You can use the TWAI library. Here there is no EN pin for CAN, so the matter is further simplified. The rest according to the CAN material:
    How to establish a CAN connection between two ESP32s using the LilyGO T-CAN485 example?
    As with RS485, the CAN bus should be terminated with 120 Ω terminating resistors at both ends of the CANH/CANL line.


    RTC activation
    The board uses a PCF85063AT real-time clock connected to pins IO38 (SCL), IO39 (SDA), IO40 (INT). It is a simple RTC communicating over the I2C bus, so you only need the standard Wire library to operate it. The package structure is simple enough that a separate library for PCF is not needed. Only auxiliary functions for the BCD encoding standard are needed.
    Code: C / C++
    Log in, to see the code

    Result:
    RealTerm screenshot showing RTC log: time 2026-03-08 19:14:00 and subsequent seconds
    In a practical situation, the current time is set once and the RTC maintains it thanks to the battery even when the main power supply is disconnected.

    Summary
    This industrial module is not only distinguished by its combination of wireless (Wi-Fi and Bluetooth) and wired (RS485, CAN and UART) communications, but also by its affordable housing. Many DIY designs suffer from a lack of good mounting options and implementation is problematic. Here, this problem does not exist, we immediately get a compact DIN rail mountable housing.
    An additional plus of this module is the RTC clock - this means that preloaded schedules and automations can work even when Wi-Fi and Bluetooth fail and there is no way to download time from the internet via NTP. This also makes it possible to use the module in places without a permanent Internet connection by programming the time once at installation (e.g. via Bluetooth), as afterwards the time will be kept by the RTC with the battery.
    On the other hand, I see one big disadvantage, however, from the mere addition of the housing, namely that the buttons are not extended outwards and there is no way to simply reset the board once it is mounted on the DIN rail.

    Cool? Ranking DIY
    Helpful post? Buy me a coffee.
    About Author
    p.kaczmarek2
    Moderator Smart Home
    Offline 
    p.kaczmarek2 wrote 14604 posts with rating 12620, helped 654 times. Been with us since 2014 year.
  • ADVERTISEMENT
  • #2 21910898
    gulson
    System Administrator
    Posts: 29366
    Help: 148
    Rate: 6047
    Interesting, I'm curious if anyone would dare to implement ESP32 in factories/production lines. It's known, it would be a cheap solution, just how security, maintenance, reliability.
    I'm curious if anyone could speak up who works/worked in maintenance.
  • #3 21910995
    krzbor
    Level 29  
    Posts: 1755
    Help: 41
    Rate: 1063
    When I started reading about the features I immediately thought of a price well over 100PLN. And here's a surprise: 80PLN and in Polish shops. The circuit seems ideal as an RS/CAN to MQTT converter. Such MQTTs with HA Discovery commands enable devices with RS/CAN to be connected to HA. With the right software, connecting e.g. a recuperator will not be a problem. If we are talking about industry, the basic problem is WiFi. Here a version with Ethernet would be better. Of course, this can be used when the system itself is to manage the control and does not need to connect to the network during normal operation. For example, you walk up to a device working as an AP, enter it, set the parameters, read any logs and off you go. Here WiFi is sufficient, because even if the cabinet is metal, we can open it for this operation.
  • #4 21911002
    gulson
    System Administrator
    Posts: 29366
    Help: 148
    Rate: 6047
    Surely no one in the industry can afford Wi-Fi :)
    And beyond that? I'd be a bit afraid on a production line, even over Ethernet.
  • #5 21911087
    altar3
    Level 13  
    Posts: 173
    Rate: 21
    Ethernet is now becoming an industry standard. Manufacturers such as B&R rely on ethernet between the CPU and the legs, there are valve islands with ethernet communication. Even many companies are producing their own ethernet switches. If anyone is willing I can take some pictures of such devices.
  • ADVERTISEMENT
  • #6 21911156
    Mateusz_konstruktor
    Level 37  
    Posts: 4208
    Help: 269
    Rate: 1104
    p.kaczmarek2 wrote:
    However, I can see one big disadvantage which arises from the mere addition of the enclosure, namely that the buttons are not extended outwards and there is no possibility of simply resetting the board after mounting it on a DIN rail

    In my opinion, this is a perfectly normal solution in equipment with an industrial purpose, and even organisationally and legally required.
    There can be no free access, although at the same time we have a serious drawback even disqualifying the whole construction.
    There is no solution to this issue in a different and incredibly simple way, and I am thinking of a button on the front and security based on the need to use a key to reset or perform a similar action.
    This is the case with many of the controls found in control cabinets.
    I am concerned with process, material and worker safety.
    Often there are several stages in a given production cycle, and resetting and starting the entire programme over again can be completely undesirable.
    For example, the machine has already taken material and a stabilisation process is in progress, in which case a new process cannot be started.
    What is missing here is something along the lines of the ignition switch known from older cars, or at least the option of adding such a component.
    In practice, this could be a single four-pin socket in the most common "goldpin" option.
    In the absence of a need for this solution, one would simply leave a single jumper in the factory setting, for example.
    The reset option, on the other hand, is essential and must be accessible like using a computer keyboard.
    There are situations such as a lack of feed due to a fault in the external tank and an emergency stop, in which case, once the fault has been rectified, the controller must be reset and the whole cycle started again.
    In view of the above, I rate this product as having a massive flaw and in need of refinement in this respect.
  • #8 21911288
    Szymon Tarnowski
    Level 27  
    Posts: 1292
    Help: 61
    Rate: 181
    What is the "industriality" of this module? It looks cool, but just because it can be DIN-rail mounted doesn't mean it's of industrial quality, industrial design or has to comply with industrial standards.
  • ADVERTISEMENT
  • #9 21911316
    p.kaczmarek2
    Moderator Smart Home
    Posts: 14604
    Help: 654
    Rate: 12620
    altar3 wrote:
    Even many companies produce their own Ethernet switches. As someone willing I can take some pictures of such devices.

    I would love to see, maybe it would be possible to look inside too? We have an appliance interior section...

    gregor124 wrote:
    What is the maximum current that can be drawn from this connector according to the manufacturer?

    From which connector? SH1.0? It's a GPIO from ESP, so check this in the ESP datasheet note.

    Szymon Tarnowski wrote:
    What is the "industrialness" of this module? It looks cool, but just because it can be DIN-rail mounted doesn't mean it's either industrial quality or industrially made, nor does it need to meet industrial standards.

    This is probably a bit of marketing, but the manufacturer emphasises this at the outset and under this name this module appears in the shops.
    Quote:

    ESP32-S3-RS485-CAN is an industrial-grade WiFi wireless communicator based on ESP32-S3 master control that supports WiFi, Bluetooth, RS485, CAN and other peripheral interfaces. It has built-in protection circuits such as power supply isolation and optocoupler isolation, which is safe, stable and reliable, and suitable for the AIoT field.
    Helpful post? Buy me a coffee.
  • #10 21911377
    gregor124
    Level 28  
    Posts: 1544
    Help: 97
    Rate: 827
    >>21911316
    Perhaps I asked the question incorrectly. I was referring to the maximum current guaranteed by the manufacturer from the pins from the socket marked J4 pin 3 and 4 (3V3 and GND) in the diagram. Unfortunately I don't have the manufacturer's documentation, and this is relevant since the manufacturer outputs them for, I guess, use in expansion.
    Unfortunately, though, I have had bad experiences with other Chinese modules when it comes to their 'excess' power for expansion, and I don't have the documentation and would rather know this before a possible purchase than afterwards.
    Helpful post? Buy me a coffee.
  • ADVERTISEMENT
  • #11 21911564
    Mateusz_konstruktor
    Level 37  
    Posts: 4208
    Help: 269
    Rate: 1104
    Where is the Bluetooth antenna located?
  • #12 21911569
    Chris_W
    Level 39  
    Posts: 8449
    Help: 384
    Rate: 1044
    Mateusz_konstruktor wrote:
    Where is the Bluetooth antenna located?

    Esp uses alternately the same antenna.
  • #13 21911574
    Mateusz_konstruktor
    Level 37  
    Posts: 4208
    Help: 269
    Rate: 1104
    @Chris_W
    And where, physically, is this antenna located?
  • #14 21911579
    electro
    Level 18  
    Posts: 488
    Help: 9
    Rate: 108
    Mateusz_konstruktor wrote:
    And where, physically, is this antenna located?

    A red SMD element labelled C3, unfortunately to use an external antenna I have to solder a resistor
    Close-up of an ESP32‑S3 PCB with a red SMD part marked “C3” and arrows labeling the antenna path and switch
  • #15 21911710
    elukam
    Level 18  
    Posts: 404
    Help: 8
    Rate: 181
    There's nothing to get excited about. It's just another board with ESP stuffed into a case. This has the commercial status of a "do-it-yourself kit", otherwise it would be an illegal product, i.e. a CRIMINAL from the point of view of the shop which sells it. Such a thing can be used for anything only with software, full parameters and a declaration of conformity based also on required radio tests.
    The machine in which it would be used must comply with the Machinery Directive, which means, among other things, that it must be equipped with an adequate safety system implemented separately.
  • #16 21911785
    filipcichowskidev
    Level 12  
    Posts: 90
    Help: 4
    Rate: 157
    >>21911710

    The introduction of such a module for sale is material for administrative proceedings, not a criminal case.

    A bit of an offtopic, but this is the umpteenth time I've seen the opinion circulate among electronics engineers that if you sell any electronics in the form of a module it doesn't have to undergo EMC testing.

    Within the EU, the EU EMC Directive(2014/30/EU) applies

    And in it it is explicitly stated that not only finished devices, but also components and modules that are made available to the end user and can generate electromagnetic interference must be tested before they are released on the market.

    The misunderstanding stems from the exclusion of "custom-built test kits (evaluation kits) intended for professionals and used only in research and development centres."

    Does the above sentence describe this board? Absolutely not, as anyone can buy one in a shop and fire it up at home.
  • #17 21911810
    gregor124
    Level 28  
    Posts: 1544
    Help: 97
    Rate: 827
    >>21911785
    The problem is that these modules are manufactured and sold in China, so such a law is just as effective in enforcing it as an intellectual property law in China.
    Of course, if someone has millions of dollars to enforce their rights in China, they can try, who knows, maybe they will be the first to succeed ;)
    You can still prosecute buyers in the EU, but then there will be cries of oligocide etc.
    And that's how this business has been going, where it has been since the 1980s in the USA, and reached Europe some time ago.
    Helpful post? Buy me a coffee.
  • #18 21911832
    elukam
    Level 18  
    Posts: 404
    Help: 8
    Rate: 181
    I used to be interested in the subject and I remember from those days that self-assembly kits and their components are not subject to testing. This does not mean that they can contain hazardous substances such as lead or mercury. The radio module itself only becomes a radio source when applied and must then comply with the standards. The soldering module is not a stand-alone device; stand-alone devices are tested. Depending on the use, the same module may or may not meet the standards. Of course, established module manufacturers also test their products and make the parameters available to users, this greatly facilitates the certification process but is neither necessary nor sufficient.
    Criminal, figuratively of course. This is not dealt with by the Criminal Code :)
    If you download something from China for your own use, it is nobody's business. If, on the other hand, it is downloaded for the purpose (or without such a purpose but with such an effect) of being placed on the market, whether in the form of trade or production, that IS the importer's problem. The importer is responsible for what he puts on the market, not the non-EU producer.
  • #19 21911886
    altar3
    Level 13  
    Posts: 173
    Rate: 21
    p.kaczmarek2
    These are some pictures of the Allen-bradley equipment at the moment I don't have the opportunity to take any more pictures and I'm going on holiday now so I have to put the phone pictures away until after my holiday. I will take some photos of other equipment and then if those modules from the photos are still available I will try to take them apart and take some
    Three Allen‑Bradley Stratix 8000 industrial Ethernet switches on a metal desk beside a keyboard
    Three Allen‑Bradley 1783‑ETAP modules with Ethernet ports and LED indicators on a metal surface
    Close-up of a module rear panel with two RJ45 ports and a power connector, held in a hand.
    inside photos.
  • #20 21912484
    p.kaczmarek2
    Moderator Smart Home
    Posts: 14604
    Help: 654
    Rate: 12620
    @altar3 interesting, then I look forward to it, preferably as a separate topic to "Interior of appliances"

    @gregor124 it's probably best to check on the schematic. As far as I can see, the power supply is based on the MP1605GTF, although there is an XL1509-ADJE1 separately before that.
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    MP1605GTF:
    Industrial ESP32-S3 module with 16 MB Flash, 8 MB RAM, RS485 and CAN buses
    XL1509-ADJE1:
    Screenshot of the first page of the XL1509 datasheet for a 2A buck DC‑DC converter
    You should also still take into account that the ESP32 also draws its own - up to a few hundred mA - depends on the radio mode and which ESP.
    Helpful post? Buy me a coffee.
  • #21 21912630
    gregor124
    Level 28  
    Posts: 1544
    Help: 97
    Rate: 827
    >>21912484
    That's what I mean, because to my eye, according to what the documentation states, that 2 A is already too little for what is ;)
    https://documentation.espressif.com/esp32-s3_datasheet_en.html#electrical_characteristics
    Since theoretically from all I/O outputs I can load up to 1500 mA in total, Wi-Fi TX at worst case 340 mA RX 88 mA, Bluetooth TX 335 mA, RX 93 mA, DualCore at 128-bit access instruction 108 mA.
    And the w25q128 memory can also take its 25 mA.
    It would be nice if the manufacturer stated this parameter, after all, it is important if it determines whether or not I need to add my power supply in the design.
    But this is the plight of all these Chinese inventions and in this case this product does not deviate from the "norm" ;) .
    Helpful post? Buy me a coffee.
  • #22 21913376
    oscil1
    Level 24  
    Posts: 639
    Help: 50
    Rate: 176
    gulson wrote:
    Certainly no one can afford Wi-Fi in industry

    Not really, Even ATEX certified IOTs work - I myself work for a company making and selling such :) . ESP32 is an issue in many places and you have to use "trusted" manufacturers
  • #23 21913412
    p.kaczmarek2
    Moderator Smart Home
    Posts: 14604
    Help: 654
    Rate: 12620
    @gregor124 you're a bit right, and poor documentation and carelessness is indeed a problem with this type of product, but you're also vastly overestimating the draw. Those 340 mA and 335 mA in TX don't seem to add up - the ESP32 juggles modes, with seemingly both WiFi and BT active at the same time, but only one of them working at any given time. Likewise that 1500 mA from the pins.... in the note I see 40 mA per pin, so 1500/40 = 37.5 , 37 pins loaded to the limit.... so this power supply is not likely to be a big drawback for this product in most applications.

    @oscil1 what circuits are used there?
    Helpful post? Buy me a coffee.
  • #24 21915893
    dktr
    Level 26  
    Posts: 937
    Help: 45
    Rate: 729
    I needed such a device recently, ordered it programmed it and it works great. I use it to read several energy meters. It is a pity that there is no such thing with ethernet - esp32s3 + rs485 + ethernet. I found a Kincony board but there additionally two relays and it is not so small anymore.
📢 Listen (AI):

FAQ

TL;DR: At about £80, this DIN-rail ESP32-S3 module solves a real control-cabinet problem: mixed wireless and fieldbus connectivity. One poster called it "ideal as an RS/CAN to MQTT converter". It gives you 16 MB flash, 8 MB RAM, isolated RS485 and CAN, plus an RTC for offline timekeeping, aimed at makers, integrators, and industrial test deployments. [#21910810]

Why it matters: This FAQ helps you bring up the board quickly, assess its industrial fit, and avoid wiring, reset-access, and bus-termination mistakes.

Cecha Wi‑Fi Ethernet
Przydatność w szafie sterowniczej Dobra do konfiguracji lokalnej AP Lepsza do stałej komunikacji przemysłowej
Opinia z wątku „Nikt w przemyśle nie może sobie pozwolić na Wi‑Fi” „Ethernet staje się standardem przemysłowym”
Typowy scenariusz z wątku Podejście do urządzenia, logi, parametry, serwis Linie produkcyjne, CPU‑I/O, wyspy zaworowe

Najważniejszy wniosek: Największą wartością modułu jest połączenie ESP32-S3, izolowanych magistral RS485/CAN i obudowy na szynę DIN. Największą wadą jest brak łatwo dostępnego resetu po montażu w szafie.

Quick Facts

  • Moduł pracuje z zasilaniem do 36 V DC, ma Wi‑Fi, BT, izolowane RS485 i CAN, a także zegar PCF85063 RTC z gniazdem baterii podtrzymującej. [#21910810]
  • Konfiguracja PlatformIO z wątku ustawia ESP32-S3, taktowanie 240000000L, pamięć Flash 16 MB, monitor 115200 i upload 921600. [#21910810]
  • Prosty test „Hello World” steruje czterema liniami LED aktywności na GPIO 17, 18, 15, 16, przełączając je co 500 ms. [#21910810]
  • Zestaw kosztuje około £80 i zawiera przewody do złącza SH1.0 z wyprowadzonymi 3.3 V, GND, GPIO1, GPIO2 oraz mały śrubokręt. [#21910810]
  • W praktycznej instalacji zarówno RS485, jak i CAN wymagają rezystorów terminujących 120 Ω na obu końcach magistrali, inaczej pojawiają się błędy komunikacji. [#21910810]

How do I configure PlatformIO for the Waveshare ESP32-S3-RS485-CAN module with 16 MB flash and USB CDC output enabled?

Use the esp32-s3-devkitc-1 profile, then override the key memory and USB settings. 1. Set framework = arduino, board_build.mcu = esp32s3, and board_build.flash_size = 16MB. 2. Add board_build.arduino.memory_type = qio_opi, monitor_speed = 115200, and upload_speed = 921600. 3. Enable USB serial output with -DARDUINO_USB_MODE=1 and -DARDUINO_USB_CDC_ON_BOOT=1 in build_flags. That matches the working setup shown for this board. [#21910810]

What is CDC mode on the ESP32-S3, and why do I need to enable it in PlatformIO to see Serial.printf messages over USB?

CDC mode enables the ESP32-S3 to expose its USB connection as a serial console, so Serial.printf appears over USB without a separate USB-UART chip. "CDC mode is a USB serial interface that lets the ESP32-S3 present logs and console output directly over native USB, using built-in hardware support instead of an external converter." The post states this board connects directly to USB and that without the two CDC build flags you will not see Serial.printf messages. [#21910810]

What's the simplest way to make the RS485 and CAN activity LEDs blink on the ESP32-S3-RS485-CAN board as a Hello World test?

Drive four GPIOs as outputs and light one at a time in a loop. The demo uses GPIO 17, 18, 15, and 16, described as RS485 TX, RS485 RX, CAN TX, and CAN RX. Set each pin as OUTPUT, write all low, then step through them with a 500 ms delay. This is the fastest proof that the board boots, your PlatformIO setup works, and the activity LEDs respond. [#21910810]

How do I start RS485 communication on the Waveshare ESP32-S3-RS485-CAN using HardwareSerial and the DE enable pin?

Use HardwareSerial(1), assign RX, TX, and the DE line, then switch the UART into half-duplex RS485 mode. The example sets RS485_TX to 17, RS485_RX to 18, and RS485_DE to 21. It starts the port at 9600 baud with SERIAL_8N1, calls RS485.setPins(-1, -1, -1, RS485_DE), then enables UART_MODE_RS485_HALF_DUPLEX. After that, the code sends a line every 2 seconds and echoes received characters to USB serial. [#21910810]

Why are 120 Ω termination resistors needed on RS485 and CAN buses, and where should they be placed in a real installation?

They are needed to reduce reflections and communication errors on differential bus lines. The thread explicitly recommends 120 Ω termination at both ends of an RS485 bus and at both ends of the CANH/CANL line. Do not place terminators at every node. The failure case is clear: without proper termination, the post warns that communication errors can occur in practical installations. [#21910810]

What is TWAI on the ESP32, and how does it relate to CAN communication on this module?

TWAI is the ESP32 interface used here for CAN communication on the module. "TWAI is the ESP32 CAN-controller interface that handles frame transmission and reception on a Controller Area Network, using the chip’s built-in peripheral rather than a separate UART-style serial block." The post says you can use the TWAI library and notes that this board has no CAN enable pin, which simplifies bring-up compared with RS485. [#21910810]

How can I read and set the PCF85063AT RTC on the ESP32-S3-RS485-CAN board over I2C with the Wire library?

Use Wire on the board’s dedicated I2C pins, write BCD-encoded time values, then read back seven RTC registers. 1. Start I2C with Wire.begin(39, 38). 2. Clear the STOP bit by writing control register 0x00, then write time data beginning at register 0x04. 3. Read back the same block and convert BCD to decimal before printing. The example sets 2026-03-08 19:14:00 and prints the RTC value once per 1000 ms. [#21910810]

Which GPIO pins are used on this board for RS485, CAN, and the PCF85063 RTC interface?

The thread identifies RS485 on GPIO 17 TX, 18 RX, and 21 DE. For the RTC, it lists IO38 as SCL, IO39 as SDA, and IO40 as INT for the PCF85063AT. The LED test also uses GPIO 15 and 16 for CAN TX and CAN RX activity indication. Those numbers are enough to start basic software bring-up and wiring checks. [#21910810]

Wi-Fi vs Ethernet for industrial controllers based on ESP32-S3 — which approach is better for factories, production lines, and control cabinets?

Ethernet is presented as the better fit for factories and production lines, while Wi‑Fi is treated as acceptable mainly for local setup or service access. One poster says Wi‑Fi is the basic problem in industry and that an Ethernet version would be better. Another adds that Ethernet is becoming an industry standard and cites CPU-to-I/O links, valve islands, and even vendor-made Ethernet switches. Wi‑Fi still fits a cabinet service model where you open the door, connect to the device AP, change parameters, and read logs. [#21911087]

How could this ESP32-S3-RS485-CAN module be used as an RS485 or CAN to MQTT converter for Home Assistant with HA Discovery?

You can use it as a protocol bridge that reads RS485 or CAN data and publishes MQTT topics that Home Assistant can auto-import. A poster says the board seems ideal for an RS/CAN to MQTT converter and mentions connecting devices such as a recuperator. The practical advantage is cost and packaging: around 80 PLN in Polish shops, plus DIN-rail mounting. This makes it suitable for cabinet installs where you want fieldbus I/O locally and smart-home integration upstream. [#21910995]

What is HA Discovery in Home Assistant, and how would it help expose RS485 or CAN devices through MQTT?

HA Discovery is described in the thread as MQTT discovery commands that let Home Assistant recognize exposed devices automatically. That means your converter can publish structured MQTT data from RS485 or CAN equipment and Home Assistant can add entities without manual definition for each one. The post ties this directly to connecting RS/CAN devices to HA through MQTT and gives a recuperator as a concrete example. [#21910995]

Why is the lack of an externally accessible reset button on a DIN-rail industrial module considered a design drawback, and what safer front-panel alternatives are used in control cabinets?

It is a drawback because operators may need a controlled reset after a fault, but uncontrolled front access can also create process and safety risks. The thread argues that restart access should exist, yet require deliberate action, such as a front key switch or a protected reset method similar to controls used in cabinets. It also gives a real failure scenario: after feed loss from an external tank and an emergency stop, the controller may need a reset before the cycle restarts. [#21911156]

What industrial reliability, maintenance, and security concerns come up when using an ESP32-based module in factory automation?

The thread raises security, maintenance, reliability, and networking concerns, especially for production lines. One poster openly questions whether anyone would deploy ESP32 in factories and asks about security and maintenance. Others narrow the issue to communication choices: Wi‑Fi is viewed skeptically for industrial use, and even Ethernet on a production line makes one participant cautious. The practical takeaway is that hardware cost alone does not decide suitability; supportability and predictable operation do. [#21910898]

How much does the Waveshare ESP32-S3-RS485-CAN board cost, and what accessories are included in the kit?

The thread gives the price as about £80 in the main post, while another poster notes roughly 80 PLN in Polish shops. The kit includes cables for an SH1.0-compatible connector with 3.3 V, ground, GPIO1, and GPIO2 broken out, plus a small screwdriver. Those extras matter because they let you power, probe, and prototype quickly without sourcing the first cable set separately. [#21910810]

What is the maximum current that can be drawn from the 20-pin connector on this module according to the manufacturer?

The thread does not provide that value. The only mention of the 20-pin connector in the post is that the board has one, and a later reply asks what maximum current the manufacturer allows, but no answer appears in the supplied discussion. If you need a guaranteed current limit, this thread alone is insufficient and you would need the manufacturer’s documentation outside this excerpt. [#21911174]
Generated by the language model.
ADVERTISEMENT