Log In
Join
Join the Community
Register
Log in
Or sign in with
Facebook
Google
GitHub
Linkedin
SIGN UP FOR OUR NEWSLETTER
Register
Main Menu
Home
Explore
Products
Cabinets & Panel Components
CNC Machines
Communication & Security
Connectors, Wire & Cable
Data Analytics & Simulation
Electrical Power Control
HMIs & SCADA
Motors & Controls
PLCs & PACs
Pneumatics & Hydraulics
Robotics
Safety
Sensors & Instruments
View all
Industry
Advanced Mfg
Agriculture
Automotive
Building
Chemical
Electronics
Energy & Infrastructure
Food & Beverage
Forest Products
Logistics
Medical & Pharma
Metal
Military & Aerospace
Natural Resources
Plastics & Polymers
Product Mfg
View all
Content
Ebooks
Forums
Industry Articles
Industry Webinars
Industry White Papers
News
Partner Content Hub
Technical Articles
Textbook
Tools
Worksheets
Articles
Latest
News
Technical Articles
Industry Articles
Industry White Papers
Forums
Latest
General Discussion
Hardware
Software
Communication
Education
Textbooks
Video Lectures
Worksheets
Industry Webinars
Ebooks
Tools
Videos
Latest
Industry Videos
Industry Webinars
Video Lectures
Giveaways
Partner Content Hub
Contact Us
Register
Log In
Network Sites
Search...
Home
Search
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Search results
Search everything
Search threads
Search blogs
Keywords
Search titles only
Posted by
You may enter multiple names here.
Newer than
Search
J
First venture into MODBUS, how to send a password?
It seems that the WiFi module and Aqua Temp app may already communicate MQTT to the vendor's cloud server. Many cloud servers have API's that allow other devices and clouds access to the data. On the Home Assistant forums, it seems someone has written a script to do exactly this. Take a look...
jschulze
Post #62
Jul 19, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
You could try another gateway, such as this one that supports MQTT https://www.csimn.com/CSI_pages/MQ-61.html However, you would need to confirm with the vendor that the gateway supports broadcast messages. Additionally, if I recall correctly from the packet captures, the display encodes the...
jschulze
Post #60
Jul 18, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
A gateway, such as ICC's Mirius, would allow you to go directly to Home Assistant. However, the gateway would need to be at Modbus address 1 or 2 in order to send commands to the heat pump, and therefore would take the place of either the display or the WiFi module. If you only need to monitor...
jschulze
Post #58
Jul 18, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
Sorry, I just noticed this mistake. That's what I get for replying early in the morning from my phone... You should not be using registers 1001 - 1090. Instead, you should be using 3001 - 3090. This is the only register range that the heat pump reads from the display to receive command data...
jschulze
Post #56
Jul 17, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
You were supposed to do this with the heat pump disconnected. That's why you're getting errors because there are two masters on the bus simultaneously trying to send requests. But now that you know what registers 1011 and 1013 control, you can create definitions for these registers in the...
jschulze
Post #55
Jul 17, 2021
Forum:
Modbus
J
How to send/receive data from PLC through Modbus(RS485)
Sorry, I think I understand what you're asking now. You have ASCII characters, for example 00001934, so there are indeed 8 characters. You want to convert these 8 characters to a 32-bit binary number (i.e. 4 bytes). For example, the ASCII characters 00001934 should be converted to the binary...
jschulze
Post #16
Jul 16, 2021
Forum:
Modbus
J
Interfacing MSP432 and Raspberry Pi over MODBUS
I was trying to determine what software on the MSP432E411 is performing the Modbus communication and whether it is custom software created from scratch or commercially available software. Is there any documentation available? You will need to know what registers (i.e. data) are available to be...
jschulze
Post #6
Jul 16, 2021
Forum:
Modbus
J
How to send/receive data from PLC through Modbus(RS485)
I'm sorry, but I don't understand what you're saying here. Are you using binary representation of 8-bit numbers ("1 represents 00000001 and 9 represents 000010001")? What is the purpose of shifting? Please explain and provide more details.
jschulze
Post #15
Jul 16, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
A different method to determine what the display is sending would be to use Simply Modbus Master (or any other Modbus master software) connected directly to the display (after disconnecting the heat pump, but leaving the display powered so that it doesn't lose the values the heat pump sent to...
jschulze
Post #50
Jul 14, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
This file just says "Modbus parse error: Unknown Modbus function" for almost every line. For what it's worth, I was able to interpret the raw data and the heat pump makes no other requests to the display (which is at address 1) other than Read Holding Registers 3001 - 3090. So you may need to...
jschulze
Post #49
Jul 14, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
Sorry, but are you able to provide something similar to mrwee's post #31? This latest attachment is just a large data dump with no indication of packet separation.
jschulze
Post #47
Jul 14, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
Can you attach a text version of the capture instead of the .njlog file that appears to only be able to be read in IO Ninja?
jschulze
Post #45
Jul 14, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
As far as sending a command, well, in short, slaves simply can't do this. Only masters can initiate requests. However, from @mrwee's IO Ninja capture, it does appear that the heat pump is attempting to read registers 3001 - 3090 from both addresses 1 and 2. It's possible that the heat pump uses...
jschulze
Post #43
Jul 14, 2021
Forum:
Modbus
J
How to send/receive data from PLC through Modbus(RS485)
Keep in mind when working with PLC's, the Programmable part of Programmable Logic Controller is very important. The data being returned via Modbus is being return because of some program loaded onto the PLC. Only the programmer of the PLC can tell you what the data is, the format of the data...
jschulze
Post #12
Jul 13, 2021
Forum:
Modbus
J
How to send/receive data from PLC through Modbus(RS485)
I apologize, I was mistaken on the LRC and wanted to correct myself. The LRC is 2 characters and therefore only 1 byte. So the packet you show is a complete, valid Modbus packet. It appears that each value is a 32-bit value and the first register contains the least significant portion of the...
jschulze
Post #10
Jul 13, 2021
Forum:
Modbus
J
How to send/receive data from PLC through Modbus(RS485)
I assume changing your serial port settings to 7 data bits and even parity solved the previous issue you were having? To decode the Modbus Read Holding Registers response, refer to section 6.3 in the Modbus specification here (note that the specification only shows the Request and Response PDU...
jschulze
Post #8
Jul 13, 2021
Forum:
Modbus
J
device damage randomly during serial rs232 communication going on
Since your company makes the protocol converter and you now have several damaged devices, I suggest you have your engineering team inspect one of the damaged converters. This will tell you the nature of the failure and help you narrow down the cause. My guess is that the power supply circuitry...
jschulze
Post #17
Jul 13, 2021
Forum:
General Automation Chat
J
How to send/receive data from PLC through Modbus(RS485)
Receiving 30 B1 is an indication you configured your serial port for 8 data bits and no parity when your Modbus ASCII device uses 7 data bits and even parity. Try changing your serial port settings to 7 data bits and even parity.
jschulze
Post #5
Jul 13, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
You should not need to check the "Respond to all Slave ID's" option. This likely means that Simply Modbus Slave does not support receiving broadcast (Slave ID 0) packets. If you have the "Respond to all Slave ID's"option checked, Simply Modbus Slave will process and send a response to EVERY...
jschulze
Post #40
Jul 12, 2021
Forum:
Modbus
J
First venture into MODBUS, how to send a password?
To expand on this, because the register listing for the heat pump uses 0-based register addressing, it probably makes more sense to set the First Register to 2001 and the Offset to 0 in Simply Modbus Slave's Slave Data window (note that this generates the same hex addresses as using First...
jschulze
Post #38
Jul 12, 2021
Forum:
Modbus
Prev
1
…
Go to page
Go
6
7
8
9
10
Next
First
Prev
8 of 10
Go to page
Go
Next
Last
Top
Continue to site
QUOTE OF
THE DAY
“
”
-