Lakeshore 218 Temperature Monitor - Printable Version +- QB64 Phoenix Edition (https://staging.qb64phoenix.com) +-- Forum: QB64 Rising (https://staging.qb64phoenix.com/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://staging.qb64phoenix.com/forumdisplay.php?fid=3) +---- Forum: Help Me! (https://staging.qb64phoenix.com/forumdisplay.php?fid=10) +---- Thread: Lakeshore 218 Temperature Monitor (/showthread.php?tid=892) Pages:
1
2
|
Lakeshore 218 Temperature Monitor - CJAlva - 09-15-2022 Hey all! I'm currently using a Lakeshore 218 Temperature monitor and was hoping to be able to grab readings using QBasic. Here's what I have so far: CLS 'Clear screen PRINT " SERIAL COMMUNICATION PROGRAM" TIMEOUT = 2000 'Read timeout (may need more) BAUD$ = "9600" TERM$ = CHR$(13) + CHR$(10) 'Terminators are <CR><LF> OPEN "COM1:" + BAUD$ + ",O,7,1,RS" FOR RANDOM AS #1 LEN = 256 LOOP1: LINE INPUT "ENTER COMMAND (or EXIT):"; CMD$ 'Get command from keyboard CMD$ = UCASE$(CMD$) 'Change input to upper case IF CMD$ = "EXIT" THEN CLOSE #1: END 'Get out on Exit CMD$ = CMD$ + TERM$ PRINT #1, CMD$; 'Send command to instrument IF INSTR(CMD$, "?") <> 0 THEN 'Test for query RS$ = "" 'If query, read response N = 0 'Clr return string and count WHILE (N < TIMEOUT) AND (INSTR(RS$, TERM$) = 0) 'Wait for response IN$ = INPUT$(LOC(1), #1) 'Get one character at a time IF IN$ = "" THEN N = N + 1 ELSE N = 0 'Add 1 to timeout if no chr RS$ = RS$ + IN$ 'Add next chr to string WEND 'Get chrs until terminators IF RS$ <> "" THEN 'See if return string is empty RS$ = MID$(RS$, 1, (INSTR(RS$, TERM$) - 1))'Strip off terminators PRINT "RESPONSE:"; RS$ 'Print response to query ELSE PRINT "NO RESPONSE" 'No response to query END IF END IF 'Get next command GOTO LOOP1 When I compile and run, I get an error calling out line 17 (IN$ = INPUT$(LOC(1), #1) 'Get one character at a time) and saying "Input past end of file". No clue how to mitigate this. Can anyone help out? RE: Lakeshore 218 Temperature Monitor - SpriggsySpriggs - 09-15-2022 I'm just taking a shot in the dark since I don't really know about communicating with devices in this way but is it possible that you need to send some sort of command to the device first before receiving any data from it? EDIT: OOPS. I see that you are already doing that! DOH! Maybe you need to use PUT and GET rather than PRINT and INPUT. Also, before getting anything, check if LOF(1) > 0 RE: Lakeshore 218 Temperature Monitor - Pete - 09-15-2022 We're going back to the days of Windows 98 when this code would work. Past that, Windows gummed up to ports to the point access was not possible without third party intervention such as porttalk: https://superuser.com/questions/1336100/does-porttalk-work-in-windows-10 Now that stated, I do not know if there were any QB64 additions that would solve this situation, as I also do not work with comm devices. I know a fellow who does, over at Pete's QBasic site (Not mine, that other Pete). He used to work a lot with comm ports and robotics. He mods the place now. So if you're really, really, really, really, really, really, really, really, really, really, really, really, really, desperate for a possible answer, if one doesn't appear in this thread, I'd say try there. Address your question to Clippy. Well, shower time. Pete RE: Lakeshore 218 Temperature Monitor - david_uwi - 09-15-2022 Do computers still have RS232 connectors? I've not seen one for a very long time. I generally use a serial to USB converter (or more often I2C to USB). These will pretend to be COM ports if you configure them in "control panel (windows)" as such. So you can do all the OPEN COM stuff and work at a blistering baud rate. I've been using "future technologies" devices https://ftdichip.com/ RE: Lakeshore 218 Temperature Monitor - bplus - 09-15-2022 Hi CJAlva, Welcome to forum! Sorry I don't know com ports but have you checked Wiki? https://qb64phoenix.com/qb64wiki/index.php/OPEN_COM PS I saw Clippy's name from GotBasic.com link at Discord. < Just saw discussion of Clippy in another board, not same guy? Also I am not sure but Old Moses may have mentioned com ports when he was machining but maybe he was just that doing manually with QB64 calculations. RE: Lakeshore 218 Temperature Monitor - CJAlva - 09-15-2022 (09-15-2022, 05:39 PM)david_uwi Wrote: Do computers still have RS232 connectors? I've not seen one for a very long time. Neither had I, until I started this job. It's remarkably outdated stuff for the organization, but I you shouldn't waste (reasonably) good tech hahahaha I'm doing the same. It runs RS232 null out of the reader and I convert it to usb at the lab pc. Baud for the reader, interestingly, can be set to 300/1200/9600 RE: Lakeshore 218 Temperature Monitor - SpriggsySpriggs - 09-15-2022 Have you verified that the USB com port is registering as COM 1 in device manager? RE: Lakeshore 218 Temperature Monitor - mdijkens - 09-15-2022 I find your code a bit difficult to read (please use more subs/functions) QB64 has some unreliable behaviour with serial, but some (proven) serial functions I wrote and use are here: Code: (Select All) Errhandler: ' ser.open% (ser$) RE: Lakeshore 218 Temperature Monitor - CJAlva - 09-15-2022 (09-15-2022, 05:57 PM)Spriggsy Wrote: Have you verified that the USB com port is registering as COM 1 in device manager? It defaults as COM3. The copy/paste calls COM1, but I changed it in QB to call COM3. Sorry there RE: Lakeshore 218 Temperature Monitor - SpriggsySpriggs - 09-15-2022 (09-15-2022, 06:32 PM)CJAlva Wrote:(09-15-2022, 05:57 PM)Spriggsy Wrote: Have you verified that the USB com port is registering as COM 1 in device manager? Ah, I see. No worries. I hope you can get it to work. It sounds like a fun project. Here is the product manual for this device. It has a sample VB program on page 77. 218_v2.0.doc (lakeshore.com) EDIT: LOL! I just realized that the QB example is the one you pasted in the original post. |