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 - karen

Pages: [1] 2
1
Technical support / Re: reading current
« on: March 14, 2002, 02:42:10 PM »
thanks you are right Leon this is what i was looking for  can you recommend an amplifier that i can use

thank you

 ???

2
Technical support / Out put on the Dac
« on: March 18, 2002, 10:02:51 AM »
Hi everyone i hope all is well i am just trying to pick your brains.  can you tell me if you can vary the voltage on the Dac and how much current is also there is it proportional to the voltage my units are 888. is it possible with which commands
 
thanks Karen


3
Technical support / LCD Display
« on: April 12, 2002, 09:50:29 AM »
can you please tell me the largest display that can be used on the 888 is it 4*40 or just 4*20 thanks for the help.  ;D

4
Technical support / interfacing rs232 port
« on: June 05, 2002, 09:02:34 AM »
is there any notes about how to interface the 232 port to an external graphic display or what is the best way to do this task

thanks

karen

5
Technical support / The SetDac Command
« on: June 18, 2002, 08:58:13 AM »
i wonder if you can help me

using the setdac command how can i solve this problem

setdac from 0-3800
show on the lcd a scale of 0-250 where
3800 represents 0
0 equals 250

thanks

karen

6
Technical support / input variables
« on: June 26, 2002, 01:24:38 PM »
is it possible to input two variables using the same keys
so you have the up down keys to change a number on the screen then the enter keys to input the variable then the screen changes and using the same up down key to change the number and the same enter key to key in the variable
thanks

karen

7
Technical support / Re: LCD 420
« on: July 09, 2002, 09:02:19 AM »
try this site for the codes it is possible

http://www.geocities.com/dinceraydin/lcd/animations.htm

bye

8
Technical support / java
« on: August 26, 2002, 02:22:55 PM »
where on the site can i download the java classes that are listed under the gui example that you have

thanks

karen

9
Technical support / Re: Visual Basic Communication Program
« on: September 30, 2002, 10:08:08 AM »
thanks for the time and effort to help us that what makes a good product great.

thanks
karen

10
Technical support / number display question
« on: November 05, 2002, 10:45:05 AM »

please can you tell me how i can make the screen show 1 and not 239 when i press the button other wise i have to keep pressing the button until it reaches the lower numbers



x = x - 17 ' Progressive increment after every call
IF x > 3800 THEN j=0: ENDIF
IF x > 3800 THEN x=0: ENDIF
j = 240 - X*240/3800

SETLCD 0,1,CHR$(1)  ' clear screen
SETLCD 1,1,"Select Current          "
SETLCD 2,1,"Current =" +str$(j)
SETLCD 4,1,"Press Enter"

thanks




11
Technical support / Re: decimal point
« on: November 18, 2002, 10:14:04 AM »
tried that but it just gives me a 0. my number as you can tell from the equation at the top every time i press the button the value of j does not increase until two pushes  3800/240=15.333 so i want to show the . number sorry my description is so bad

ta

karen

12
Technical support / decimal point
« on: November 18, 2002, 09:25:07 AM »
x = x + 8 ' Progressive increment(??) after every call  
IF x > 3800 THEN  
    j = 0
    x = 0    
ELSE  
    j = 240 - X*240/3800  
ENDIF
  


SETLCD 0,1,CHR$(1)  ' clear screen
SETLCD 1,1,"-------INPUT---------"
SETLCD 2,1,"      Current"
SETLCD 3,1,"        "+str$(j)+" ma"        
SETLCD 4,1,"_____Press Enter____ "

how do i show a the number with a decimal point the variable is j  ;D

thanks


13
Technical support / Re: Customise Trilogi Please
« on: December 11, 2002, 12:45:15 PM »
sorry for causing u more trouble i am still not sure how this works i just want to show the warming screen once while the temp is low after that i dont want to display it any more just the plating screen but i still want the heater to cut in and out while palting takes place .

thanks

14
Technical support / Customise Trilogi Please
« on: December 09, 2002, 12:03:56 PM »
U= ADC(1)/10 ?'this is the input from the lm35 temprature chip

IF U < 60 'turn heater on
SETIO Heater
SETLCD 0,1,CHR$(1) ?' clear screen
SETLCD 1,1,"_______AURIUM_______ "
SetLCD 2,1, ""
SetLCD 3,1, " Warming Au Solution"
SETLCD 4,1,"___________________"+CHR$(126)
ENDIF

IF U > 63
CLRIO Heater
T = T+1 ?' Variable T is used as a timer.
A = T/3600 ? ? ? ? ?' Hour
B = (T MOD 3600)/60 ' Minute
C = T MOD 60 ? ? ? ?' seconds.
T$ = STR$(A)+":"+STR$(B)+":"+STR$(C)+" ? ? "
SETLCD 0,1,CHR$(1) ?' clear screen
SETLCD 1,1,"___ELECTROFORMING___"
SetLCD 2,1," ? ?Plating Time ? ?"
SETLCD 3,1," ? ? ?"+T$
SETLCD 4,1,"____________________"
ENDIF


Y=665+J 'set the speed of the motor
g = x - (j+80) 'adjust the current


SETDAC 1,y 'motor control
SETDAC 2,g 'set the current



IF m = 1 and T >= 25200 ? ' 7 hours = 25200 seconds.
CLRIO Motor
CLRIO Heater
CLRIO CurrentRly
CLRIO Temp_Cont
SETLCD 2,1," Process Completed!"
SETLCD 3,1," ?Remove Copings "
SetDac 2,3800
ENDIF

IF m = 2 and T >= 32400 ? ' 9 hours = 32400 seconds.
CLRIO Motor
CLRIO Heater
CLRIO CurrentRly
CLRIO Temp_Cont
SETLCD 2,1," Process Completed!"
SETLCD 3,1," ?Remove Copings "
SetDac 2,3800
ENDIF




i wonder if you can help me with this problem that i have i have removed the relay thermostat that i had and replaced it with the lm35 into the adc(1) this should make reading the tempreture more accurate. Now for the problem. ?i want to show the first screen warming until the temp is reached. then i want to show the screen palting and the timer to start but i also need the temp to be consistant so cutting in at 58 and cut out at 62 how can i customise this to give me this please

thanks Karen


15
Technical support / Re: Logical problem
« on: December 12, 2002, 01:25:41 PM »
what happens is there is a fluctuation in the reading because when heater turns off so there is increase in voltage and then this in turn affects the adc(1) so that is the 27

thanks

Pages: [1] 2