Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
Modbus RTU
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Status of FPC 3.4.0 or FP...
by
DavidL
[
Today
at 03:37:38 am]
[ANN] fpGUI Toolkit v2.0....
by
Graeme
[
Today
at 02:57:36 am]
My AGGPas examples
by
Graeme
[
Today
at 02:52:48 am]
We are starting to use La...
by
dbannon
[
Today
at 02:15:01 am]
Reporting a Bug? in Strin...
by
Bart
[
Today
at 01:48:34 am]
QuestionDlg does strange ...
by
Martin_fr
[
Today
at 01:16:29 am]
SoundTracker Player Libra...
by
hukka
[
Today
at 01:01:39 am]
it2play - IT/S3M module r...
by
hukka
[
Today
at 12:47:05 am]
Reflection and Review in ...
by
jwdietrich
[February 14, 2026, 09:53:31 pm]
How to determine the unkn...
by
Roland57
[February 14, 2026, 09:42:26 pm]
fpGUI Toolkit v2.0.1 has ...
by
cdbc
[February 14, 2026, 09:32:46 pm]
LazReport
by
dseligo
[February 14, 2026, 08:51:08 pm]
Howto : Double buffer wit...
by
biologic
[February 14, 2026, 06:42:42 pm]
how to enable multihelper...
by
PascalDragon
[February 14, 2026, 06:30:05 pm]
Free Pascal for a small e...
by
devEric69
[February 14, 2026, 06:19:36 pm]
Fast Canvas Library V1.05...
by
backprop
[February 14, 2026, 05:46:10 pm]
Are the source files for ...
by
Derz
[February 14, 2026, 05:12:27 pm]
[ANN] PasBuild 1.3.0 rele...
by
Graeme
[February 14, 2026, 05:02:32 pm]
Frustrating Error When us...
by
jamie
[February 14, 2026, 04:22:29 pm]
; after then
by
Curt Carpenter
[February 14, 2026, 04:09:29 pm]
Help needed compiling
by
jamie
[February 14, 2026, 03:58:08 pm]
Does not go out of functi...
by
Martin_fr
[February 14, 2026, 03:43:52 pm]
How to start LAMW emulato...
by
RaketeMike
[February 14, 2026, 12:44:46 pm]
ThorVG - test (lightweigh...
by
Antek
[February 14, 2026, 12:35:09 pm]
Questions from a Windows ...
by
hedgehog
[February 14, 2026, 12:20:15 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Modbus RTU (Read 8704 times)
BLL
Sr. Member
Posts: 276
Modbus RTU
«
on:
October 08, 2016, 10:13:25 pm »
Hi, I need to read /write a device (EpSolar Tracer solar controller) which uses the Modbus RTU protocol. I have never used Modbus before.
Are there any libraries or tutorials already available to help?
I have read up on the protocol but can't as yet get my device to say anything!
Brian
Logged
molly
Hero Member
Posts: 2330
Re: Modbus RTU
«
Reply #1 on:
October 08, 2016, 10:22:32 pm »
perhaps
PascalSCADA
is able to help you out there ?
Logged
tr_escape
Sr. Member
Posts: 437
sector name toys | respect to spectre
Re: Modbus RTU
«
Reply #2 on:
October 08, 2016, 10:35:26 pm »
Have you got modbus address list of this device?
As Molly mentioned pascalscada has got modbus driver you can read and write to device if supports.
Logged
BLL
Sr. Member
Posts: 276
Re: Modbus RTU
«
Reply #3 on:
October 08, 2016, 10:59:03 pm »
Hi all, Thanks for the replies.
Yes, I have downloaded the manufacturer's specification, which has all the commands for reading/writing the device.
I will look at pascalscada, which I don't know at all.
Thanks
Brian
Logged
avra
Hero Member
Posts: 2584
Re: Modbus RTU
«
Reply #4 on:
October 11, 2016, 10:41:55 am »
Using PascalSCADA is nice, but might be an overkill if your needs are simple. For such cases you might want to just use mbutils lib:
http://forum.lazarus.freepascal.org/index.php?topic=11131.0
it is much better if you first establish a successful communication with your device using some modbus client like this free one:
http://www.modbusdriver.com/modpoll.html
p.s. There is a search in forum, you know...
«
Last Edit: October 11, 2016, 10:46:07 am by avra
»
Logged
ct2laz
- Conversion between Lazarus and CodeTyphon
bithelpers
- Bit manipulation for standard types
pasettimino
- Siemens S7 PLC lib
sadikacar60
Guest
Re: Modbus RTU
«
Reply #5 on:
February 22, 2019, 08:54:45 am »
friends pascal scada with plc say qp0 relay want to set. How can I do with pascalscada easily with the delphimodbus component.
Yours truly
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button3Click
(
Sender
:
TObject
)
;
begin
TCP_UDPPort1
.
Host
:
=
'169.254.230.191'
;
TCP_UDPPort1
.
Port
:
=
502
;
TCP_UDPPort1
.
WriteState
(
???
)
;
end
;
windows also made with delphi modbus component
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
begin
IdModBusClient1
.
Host
:
=
'169.254.230.191'
;
if
IdModBusClient1
.
WriteRegister
(
1
,
1
)
then
//register-deger 1-0
else
MessageDlg
(
'PLC register write failed!'
,
mtError
,
[
mbOk
]
,
0
)
;
end
;
Logged
mig-31
Sr. Member
Posts: 308
Re: Modbus RTU
«
Reply #6 on:
February 22, 2019, 09:55:27 am »
It's so easy.
Look in PascalScada component examples directory and you can do it.
Logged
Lazarus 4.0 - OpenSuse Leap 15.4, Mageia 8, CentOS 7
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
Modbus RTU
TinyPortal
© 2005-2018