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.


Topics - jonathan.kaye

Pages: [1]
1
Technical support / Current output from DAC???
« on: July 26, 2015, 06:16:36 PM »
I have a FMD 88 and my cabinet is getting a little hot in the summer. I think having the PLC turn on a fan after set point would be neat.

I'm out of digital outputs though. I am wondering if I can write a ~3V signal to a small cpu fan. Digikey has  fans that run down around 0.1 Watts. If this is to much power could I maybe toggle a transistor?  

I couldn't find anything in the manual on the current draw for the two D/A outputs.

Thanks for any help!

-JK

2
Technical support / TLServer fails to open...
« on: May 04, 2015, 03:40:50 PM »
TLServer will open for one second, then quickly close...

Had this problem a while back and deleted all other JRE's. Re-installed just Trilogi stuff... same problem.

When I run the Batch file I get a message in a CMD window...

Server socket:"java.net.BindException: Address already in use: JVM_Bind"

I saw a similar problem in the search results (java lib-instserialio2008). When I click it nothing seems to happen.

From what I can tell (limited research) another process is already using the port? If that's the case, what port would TLServer try use? I can use the netstat and reference a port in use to the PID number I think.

Any help would be greatly appreciated!

-Jonathan


3
Technical support / Sending e-mail issue?
« on: February 12, 2015, 06:15:49 PM »
I’m trying to the TLServer to send a test email. I was able to do this no problem 4 months ago now I can’t seem to do it.

If I try to use a gmail account (turn on POP & try different ports 25, 587,465) I get...
“AuthenticationFailedException” or “Could not connect to SMTP host” or TLServer freezes up.

I tried with smtp2go and got…
“Certificate signature validation failed”

Not sure what I did right a few months back; anyone have any advice.

Thanks,

-Jonathan

4
Technical support / T-basic new user issues...
« on: November 10, 2014, 06:26:28 PM »
I've been trying out all the t-basic keywords but some seem to really stump me. Specifically the while loop, for loop, and goto.  

I've linked 3 small .pc6 files with what I have tried and the issues I am having.

https://onedrive.live.com/embed?cid=5BC17F733268BD97&resid=5BC17F733268BD97%211293&authkey=AGYTNauw3TtZd8g

For loop - It seems to write over my variable.

N = DM[10]

for N = 5 to 10
   setio light_1
next

setlcd 3,1, "N=" + str$(N)

DM[10] counts up from another cusfn. This "for loop" writes 11 to N and not sure why.


While loop - Freezes when it gets to variable

N = DM[10]

While N > 5  
   setio light_1
Endwhile

setlcd 3,1, "N=" + str$(N)

DM[10] counts up from another cusfn. This "while loop" freezes when dm=5

GOTO - as if it's not even there

If dm[10] = 2
   goto @10
elseif dm[10] > 5
   goto @5
else
endif

@10 setlcd 2,1, "DM is 2"

@5 setlcd 3,1, "DM is greater than 5"

DM[10] counts up from another cusfn. The if statement works fine, but the GOTO's just fire off. I know I can put the statement in the "if" but I'm just playing with it

Thanks in advance for any help!


Pages: [1]