This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Turck modbus communication
#1
Hi everyone, I'm trying to communicate with a Turck gateway, I have write a simple resident script to ask cyclical a value of the power supply, it works for a n numbers of request then the Turck passes me  'nill'
Any suggest?
Best regards 

This is my script 

if not mb then
    require('luamodbus')
    mb = luamodbus.tcp()
  mb:open('192.168.0.162', 502)
  mb:connect()
  log('stato modebus ', mb)
end

-- loop while condition is met
while (1) do
  -- read from address 1000
value = mb:readinputregisters(9216)
  log('valore di value',value)
  -- wait for 1.5 seconds
os.sleep(5.5)
end
Reply
#2
As suggested earlier you should use a profile instead of a script.
Here's a script that handles disconnect correctly. Make sure that script sleep time is larger than 0.
Code:
if not mb then
  require('luamodbus')
  mb = luamodbus.tcp()
  mb:open('192.168.0.162', 502)
  res = mb:connect()
  log('stato modebus', res)
end

if mb then
  value = mb:readinputregisters(9216)
  log('valore di value', value)
  
  if not value then
    mb:close()
    mb = nil
  end
end
Reply
#3
Thank you so much. Now I've created the json file and it works fine.... Sorry but I'm new in the modbus world.
Reply


Forum Jump: