AzeoTech

Administrators
  • Posts

    6,432
  • Joined

1 Follower

Recent Profile Visitors

53,101 profile views

AzeoTech's Achievements

Guru

Guru (5/5)

0

Reputation

  1. To confirm that it was removed, just run DAQFactory and see if a trial dialog appears. If it does, then there is no license. It is giving you the other message because the upgrade key only works if you have the appropriate license already installed. For example, if you are upgrading from Lite to Base, the key only works if you have Lite installed and licensed. Otherwise folks would just buy the upgrade key and get Base for half price. If you have troubles with your keys, contact us directly.
  2. The 15-16 letter key was emailed to you when you purchased. You need to use that key. It is not stored with the installation (otherwise someone could easily steal your license!). You can get the new computer working first if you like, then remove the development license off the old computer.
  3. OK. I still recommend upgrading... You are missing out on a lot. Just backup your document before doing so. Then you could revert back to 5.87c if you really wanted to.
  4. Your release is ancient (by software standards). Like over 13 years old. As such I can't really address any issues with it. You really should upgrade, at least to 19.1, probably to 20.2, especially if you are creating a new document. There is no charge for the upgrade to the newer release.
  5. I'm assuming you called your sequence "LampCheck" too. I'm not sure and would need more detail on your application and what exactly makes you think it is failing. I made a simple equivalent sample (release 19.1) that I've attached here that shows it working as expected, both in 19.1 and 20.2. sequenceCaller.ctl
  6. There are two errors: 1) the primary error is that you are mixing C/C++ syntax with DAQFactory. DAQFactory only uses {} for denoting a static array. It is not used for blocks like it is in C. So, you want something like: function LampToggle(Light) // code endfunction function LampCurrentMonitor() // more code endfunction 2) while you can put multiple functions in a single sequence, the first function MUST have the same name as sequence. Actually it doesn't, but the name you provide for the sequence is the one the first function gets. So if the code you posted (with the changes mentioned above for endfunction) was in a sequence called myFunctions, you would be able to call LampCurrentMonitor() fine, but LampToggle() would not work. It would be named myFunctions() as far as DAQFactory is concerned because that is what you named the sequence.
  7. Thanks. We are aware of that issue. It is a bug in the tool we use to generate the help system when used in an embedded browser. For now, I would recommend opening the PDF form of the help, installed in the DAQFactory installation folder, and do a search there.
  8. Thank you for the input. The difference here is that the devices themselves, the LabJack and serial device, are not in safe mode. Safe mode in this case is a DAQFactory feature. Since streaming data, both from the LabJack and from asynchronous serial devices is controlled by the device and not DAQFactory, switching DAQFactory does not stop the data from coming in. Safe mode in DAQFactory is largely designed to allow someone to load a document into a computer that does not have hardware and avoid all the errors that would be generated. It is also designed to allow someone to load a document of unknown origin and check it for potential harmful script. Safe mode in DAQFactory blocks outgoing serial comms, all the file based functions, and most scripts among other things. Although it is called "mode", it is not really a mode that one typically switches into an out of. Typically one will load a file in safe mode and work with it in safe mode, possibly coming out of it when hardware becomes available. A working system is not typically switched into DAQFactory safe mode otherwise.
  9. Thanks! Yet another reason to avoid USB...
  10. Yup, it was a very simple fix which has been applied. If you'd like to email us at support@ I can get you a link to an update. Otherwise it will probably be a couple days before we release it as 20.3. Thank you again for your detailed bug report.
  11. Excellent information and debugging. We should be able to resolve this quick. In the meantime, if the issue is auto-hide with the help, you can reset the help window back to its default by quitting DAQFactory, then opening the registry editor, navigating to HKEY_LOCAL_MACHINE/Software/DAQFactory/DAQFactory (yes two DAQFactory's) and delete the entire subfolder "BCGWorkspace20". If there is a "BCGWorkspace2" you can delete that as well.
  12. Thank you for the bug report. Can you tell me what folder you installed DAQFactory into? Also, how are you starting DAQFactory?
  13. You may be able to switch off the Auto-grid mode for the bottom axis and play around with the settings.
  14. A couple of key notes before I start: 1) hexadecimal is a loaded term. Hexadecimal is just another way of representing a number. So, 15 (base 10 / decimal) and 0x0F (base 16 / hex) are the exact same number and you can use either in DAQFactory IF, and that's a big IF, the device actually wants numbers (i.e. binary) and not an ASCII representation of numbers. If it wants an ASCII representation then the ASCII string "15" and the ASCII string "0F" are not the same and you have to use "0F". 2) the \ notation, i.e. \x0F only works in the comm monitor. It does not work in the write() function and therefore it won't work in the poll() function (which uses write). You instead have to build up your string using chr(), or chra() Besides those two points I can't say more without seeing the documentation to know if the device expects numbers or ASCII representations of numbers. If you can type \x02\x81\xD4\xD5\x03 in the comm monitor and get the desired result, then it expects numbers and is binary protocol. I will also say this: user protocols are probably being deprecated (and don't work in 20.1+) and therefore I suggest writing sequences to perform the polling instead. You can copy the poll() function if you want to help you, though you will have to specify the full device name for functions like write(), readUntil(), and purge(). It is also much easier to debug in a sequence.
  15. Can you post a sample of the result and a screen shot of the export set.