Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - jurg1505

Pages: [1]
1
Technical support / FX2424 Modbus RTU
« on: May 26, 2019, 02:38:05 AM »
I want to read data from a Epever solar charger the Tracer2210AN.

The Tracer2210AN modbus settings are;
Code: [Select]
controller supports RTU mode only.
16bit MODBUS addresses (per the modbus.org spec)
The serial communication parameters are
ï‚ž ï‚  BPS:115200 baud
ï‚ž ï‚  Parity: None
ï‚ž ï‚  Data bits: 8
ï‚ž ï‚  Stop bits:1
ï‚ž ï‚  Flow control: None

Example code from Epever
Code: [Select]
Read real-time battery voltage
Device ID:0x01
Function code: 0x04
Register Address: 0x3104
Register count: 0x0001
Send command: 01 04 31 04 00 01 7E F7
Receive command: 01 04 02 04 CE 3A 64
Read Holding Register Value: 0x04CE
0x04CE (hex) = 1230 (dec)
1230 / 100 = 12.3 volt


Code: [Select]
Z = READMODBUS (13,1,3104)i get 4 values one after the other
How can i put the first value in DM[51], second in DM[52] ....

2
Technical support / TL7.12 Build 3
« on: May 27, 2017, 01:17:20 AM »
I have updated the software to version 7.12 Build 3.

With the new version i can not connect to a plc through a softether network.
I there something changed with the ports ?

With version 7.11 i had no problems.

Where can i download version 7.11 ?

3
Technical support / 0.HTM Slider location
« on: December 24, 2016, 05:02:26 AM »
How can i change the slider location on the 0.htm ?
Quote

sliderlocs[0] = new position(300,545,0,1);
sliderlocs[1] = new position(300,315,0,1);
sliderlocs[2] = new position(30,340,0,0);
sliderlocs[3] = new position(30,365,0,0);
sliderlocs[4] = new position(30,390,0,0);
sliderlocs[5] = new position(30,415,0,0);
sliderlocs[6] = new position(30,440,0,0);
sliderlocs[7] = new position(30,465,0,0);

4
Technical support / I2C bus Smart Tile
« on: June 29, 2015, 04:05:38 AM »
I am a noob in I2C bus
Can anyone explain how i can read the sensor with a Smart Tile ?
http://www.adafruit.com/products/1893


5
Technical support / Z-wave home automation
« on: June 14, 2015, 07:45:25 AM »
Has anyone tried to control z-wave modules with the FX2424?


6
Technical support / Re:Howto change text to number
« on: May 12, 2015, 11:40:00 PM »
Thanks for your quick replay.

WORKS

7
Technical support / Howto change text to number
« on: May 10, 2015, 11:46:27 PM »
How to change the month into a number ?
See attachement

10 MAY 2015 22:02:21 CEST
I have to change MAY to 05
IF VAL(MID$ (A$,  4, 3)) = ??

8
Technical support / FMD 88-10
« on: August 30, 2014, 05:12:05 AM »
The ADC of the FMD 88-10 is not measuring, ADC 1-8.

The plc stopt measuring the analog inputs.
When i put a voltage between 0-4V on the inputs the adc stays 0v.

Grounds are connected.

What can be wrong ?

9
Technical support / Easy mail delivery
« on: July 13, 2014, 05:03:41 AM »
When i use the custom files from Easy mail delivery in my program i get
 Error: Unknown Keyword: "WAIT_TIME"

Can someone explain how to solve this ?

10
Technical support / How to compare time with DM value
« on: March 17, 2014, 01:00:35 AM »
How can i compare the time with a DM value ?

SETLCD 1,11,"| "+STR$(TIME[1])+":"+STR$(TIME[2],2)+":"+STR$(TIME[3],2)+""

if DM[1] >= 0 AND DM[1] < 2400 AND DM[1] <> load_eep16(100) AND then                
save_EEP16 DM[1],100
else DM[1] = load_eep16(100)
ENDIF

if TIME >= load_eep16(100) then

DM[1] is always  4 digits

Pages: [1]