dyaacov

Results 13 comments of dyaacov

This works for me: ``` import AWS from 'aws-sdk'; const MailComposer = require('nodemailer/lib/mail-composer'); import fs from 'fs'; const Mustache = require('mustache'); const ses = new AWS.SESV2({ apiVersion: '2019-09-27', accessKeyId: process.env.AWS_ACCESS_KEY,...

Thanks Yaacov, I'm not sure how it helps. in the example you sent, the client open connection and request for registers. in my case, the meter opens connection to the...

Hi, In my case, I develop the server, the client is a meter. in the meter, I changed the timeout to 1 second, still same issue var modbus = require("modbus-stream");...

exactly. connection.readInputRegistersends up in GatewayTargetDeviceFailedToRespond On Mon, Mar 22, 2021 at 2:22 PM Diogo Resende ***@***.***> wrote: > And you seen an incoming connection but the devices doesn't respond to...

Hi, Sorry for the very late response, is it possible that the server did not send the tcp handshake to the hardware (upon connection recieved), and therefore cannot request for...

Still same :( I had a session with the hardware support (https://www.satec-global.com/PM135) He showed me that via their administrative tools (resides on the same network as the meter), he is...

I tried a different approach: I ran the code on a local machine resides on the **same network as the device**: 1. the above code still did not work. 2....

I think you misunderstood me... It is still doesn't work when the device ping the server and the server requests from registers. It only works when I try to connect...

Hi again, We continued the debugging, I do see the registers are sent from the meter (using wireshark) but the server cannot get them (Error: **_GatewayTargetDeviceFailedToRespond_**). I made sure no...