jaresing

Members
  • Posts

    12
  • Joined

  • Last visited

Everything posted by jaresing

  1. Every now and then I return to this question. Is there a way to calculate the height and area of peaks once you have acquired sensor data. For a long time I have shared DAQ factory, and have gotten people to buy it, but the issue has always been, how do I post process the data that I have collected. My data is sensor versus time. I have peaks generated by chromatography or flow analysis. I love being able to control every instrument that comes along, but I hate having to purchase another solution to process my data. It also makes it tough to generate a universal solution that would enable me to share with my friends. It is tough to believe that we are this far along without this capacity being available. (please correct me if my information is dates!)
  2. Got it, my error was the hyphen instead of the comma out = format(" Set_rack(%d,%d)",variable,variable2) 
  3. I am trying to send this command over a serial channel using a ddp protocol Set_rack(variable1,variable2) This command requires (), and I cant figure out how to write the serial port For the command "position=variable,variable2" I would go function position(variable,variable2) private string out purge() out = format("position=%d-%d",variable,variable2) write(out + chr(13)) What do I do for the parentheses? Thanks