Recent Posts

Pages: 1 [2] 3 4 ... 10
11
Technical support / Re: NANO-10 Analog Input Protection
« Last post by garysdickinson on August 13, 2025, 11:09:09 PM »
I am very certain how I destroyed the 1st PLC.  I am using inexpensive 4..20 mA signal generators that can, also, output 0.20 VDC. I screwed up and sent 20 VDC into both ADC inputs.  Not too bright on my part.

I tried to be much more careful with the 2nd NANO-10.  Both ADCs worked with 4-20 mA signals. I then worked on refining my digital signal processing software using ADC[1].  I then added in ADC[2] to my test code snd found that ADC[2] was not working.  I don’t know how I damaged the 2nd PLC, but I did.

I have found a 3rd NANO-10 in my collection of PLC stuff. I will see if it works and add the input protection circuitry.  If I can’t get it working I will order another NANO-10.

Regards,

Gary Dickinson
12
Technical support / Re: NANO-10 Analog Input Protection
« Last post by support on August 13, 2025, 08:12:09 PM »
We think your input protection circuit should work pretty well.

We would like to mention that from our knowledge, all of the Nano-10 analog inputs have 20K ohm input impedance and should be pretty well protected against transient voltage applied to its input, such an momentary wrong connection to 24V, or electrostatic discharge.

Are you pretty sure that the Nano-10 analog input on your Nano-10 was damaged? You may want to request an RMA to send them back to TRi to check.

13
Technical support / NANO-10 Analog Input Protection
« Last post by garysdickinson on August 13, 2025, 01:35:52 PM »
I've run into a bit of a problem with the NANO-10 Analog Inputs.  I have damaged the inputs on 2 of my NANO-10 boards.

I have attatched a schematic of a possible input protection circuit.  I am looking for feed back.

The sensors that I am working with output a 4 to 20 mA current source.  The 250 ohm resistor converts this to voltage between 0 and a bit less than 5 VDC.  I am aware of the 2K input impedance of the analog inputs.

The 5.1V Zener diode is an attempt to limit the voltage that the analog inputs "see". The Zener is supposed to clamp the voltage to about 5.1 VDC max and if the input voltage goes below ground the Zener will behave like a normal diode and clamp the low voltage to about -0.7 VDC.

The 120 Ohm resistor just limits the current that flows in the circuit and does not affect the accuracy of the measurement (the sensor outputs current and not voltage). The 0.01 uF capacitor is an attempt to bypass transient events to ground.

Gary Diuckinson
14
Technical support / Re: Analog ground point for Nano-10
« Last post by support on June 10, 2025, 10:00:47 AM »
Nano-10 does not have a separate analog ground. So yes you can connect the ground to the power supply 0V as the common ground. Ground noise has not been a problem for the typical applications that Nano-10 have been being used in the past. We do recommend connecting any additional 0.1uF capacitor across the analog input terminal to minimize fluctuation in the readings or do a software average of multiple readings.
15
Technical support / Analog ground point for Nano-10
« Last post by garysdickinson on June 10, 2025, 09:32:36 AM »
I am working with a Nano-10 to work with 4-20 mA sensors.

The Nano-10 does not appear to have an analog ground connection.  The best that I can do is connect the free end of the current sense resistor to my common DC bus.

I am concerned about minimizing noise pickup by the ADC circuitry.

Is there a spot on the Nano-10 that I could solder onto as an analog ground?

Gary Dickinson
16
Technical support / Re: MQTT Product Plans
« Last post by support on April 29, 2025, 02:28:25 PM »
We have a version of SmartTILE under development that supports MQTT. However, it is not yet a released product.

If you have an OEM application please contact support@triplc.com and discuss your application as well as the time-line needed.

Meanwhile you can test the MQTT functions using WX100. The same capability will be ported to the Gen 2 SmartTILE when it becomes available. 
17
Technical support / MQTT Product Plans
« Last post by eagroup on April 29, 2025, 12:16:56 PM »
Do you have plans to expand MQTT functionality to other devices, for instance the Fx and SmartTILE PLCs?  We are experimenting with MQTT, but won't have WiFi available.
18
Technical support / Re: PMW outputs
« Last post by support on December 29, 2024, 06:55:12 PM »
We have transferred a simple program based on  your code to a FMD PLC. When CR1 relay is turn on (use left mouse click during online monitoring), PWM1 and PWM2 (output 7 and 8) did light up momentarily for duration set by your DELAY statement.

FMD PLC uses a different type of solid state output driver from T100MD888+.  Can you try to pull up the output 7 and 8 with a 1K ohm, 1/2W resistor and see if it makes a difference to the control action on your SSR.

Please also note that FMD8810 without the FRAM-RTC have some memory limitation (only DM[1] to DM[1000] are available), so make sure that it is not because your program is trying access on existent DM memory and therefore the program is not behaving as your have experienced in T100MD PLC.
19
Technical support / Re: FMD MODBUS Long delay answering
« Last post by support on December 15, 2024, 05:30:19 AM »
Can you try to put the FMD PLC in PAUSE mode (you can turn on DIP switch #4 and reset the program) and then test the Modbus response time again. If the response time is shortened considerably then it is likely because the logic scan time in the PLC program is taking too long.  This can happen if you use a lot of DELAY statements in custom function to achieve time delay.
20
Technical support / Re: PMW outputs
« Last post by Hminx on December 05, 2024, 11:34:56 PM »
What I mean by  ' no longer operates correctly ' is that when I operate the T100MD 888 with custom function :-
'
            'Set up control values for side shift
            '====================================
' set pwm level for side shift function & shift to 5th 


    setPWM 1,3500,500
    delay 10
    setPWM 1,9000,500
    delay 27
    setPWM 1,0,500
    delay 10
    setPWM 1,4500,500
    delay 5
    setPWM 1,4600,500
    delay 20
    setPWM 1,0,500
    delay 10
    setPWM 1,4600,500
    delay 20
    setPWM 1,3000,500
    setPWM 2,3500,500
    delay 30
    setPWM 1,3000,500
    setPWM 2,9000,500
    delay 100
    setPWM 1,0,5500
    setPWM 2,3500,500
    delay 2000
    setPWM 1,0,500
    setPWM 2,0,500
    delay 5000

the  outputs PWM1 ( Output 7 ) & PWM2 ( Output 8 ) work correctly and  switch the SSR's as per the custom function, but if I try to use
a FMD88-10 the same outputs only give a short duration pulse if anything at all.

Pages: 1 [2] 3 4 ... 10