Welcome to Laser Pointer Forums - discuss green laser pointers, blue laser pointers, and all types of lasers

LPF Donation via Stripe | LPF Donation - Other Methods

Links below open in new window

ArcticMyst Security by Avery

OpenLPM - The free, open-source LPM project!

Trevor

0
Joined
Jul 17, 2009
Messages
4,386
Points
113
OpenLPM Mk. I

I've put in a lot of work over the last couple weeks to get OpenLPM Mk. I into a releasable, beta format. The goal of this project is to provide - free of charge - laser power meter firmware and circuit designs licensed under the GNU GPL v3. I hope that this will allow more people to create better laser power meters for less money (both in development costs and final cost to the consumer). I hope that at least a few people base a project on OpenLPM and enter the market with it.

Features
  • OpenLPM is free and open-source.
  • It is a developer's platform. Anything that the user of OpenLPM wants to modify can be modified - be it in the configuration files or in the source itself.
  • Right out of the box, it offers a high level of configurability and adaptability for diverse applications.
  • Compatible with all currently available LPM datalogging software!
  • Designed to run on open-source hardware, but can be adapted to run on a standalone microcontroller.

The Benefits

OpenLPM gives you the flexibility to add highly configurable datalogging to any laser power meter. So, you can take your Radiant Alpha, LaserBee A, LaserBee 5W, original Kenometer, whatever – and allow USB connectivity to the PC for ONLY the cost of an Arduino (or a stripped-down ATMega328 circuit!). Then you can use a datalogging program like Luminosity, EagleEye, StampPlot Pro, or one of the many other available programs.

All you’d have to do is hook up power and ground to the Arduino then run your signal voltage into your configured pin. Then you just need to put a small hole in your enclosure and mount the Arduino so that the USB port is accessible.

Moreover, OpenLPM could be integrated into a brand new LPM that you’ve developed – adding high-value datalogging capability without the cost of developing it.

That’s $35… or less!

Even more importantly, OpenLPM is free and open-source. You can download the source code for no cost for modification to suit your needs. The fact that it is open-source allows OpenLPM to both be highly customizable and be used as a learning tool – with the added benefit of more than one developer contributing to the progress of the project.

What You Need

Getting Started

Download OpenLPM and extract the files to whatever location you see fit. Also download and extract the Arduino development environment. Install the drivers as instructed on their respective download pages.

Now you’re ready to dive into the project!

Configuration


Start the Arduino IDE and open up the file titled “OpenLPM_Mk_I.pde.” This will bring up the entire project. You will see three tabs:
  • OpenLPM_Mk_I – This contains all of the configuration options for OpenLPM.
  • VALIDATION – Don’t modify this. This file contains checks on the configuration options. This file protects your solution from known issues when deployed – such as variable overflow.
  • main – This tab contains all the source code.
For now, we’ll focus on the first tab. There are a number of options available to you:
  • OVERSAMPLE – The number of samples to take per reading output. The Arduino has an effective limit of 10,000 samples per second. The more you oversample, the better resolution you’ll generally get. 1024 is a pretty good value in terms of balance between resolution and sample rate.
  • BAUD – The baud rate for RS232 communication. Default is 9600, but settings up to 115200 are supported.
  • REFERENCE_OVERRIDE – This is for overriding the Arduino’s standard voltage reference (and OpenLPM’s autoranging) with an external voltage reference. Making a mistake with external voltage reference can damage your board. Required reading: Arduino - AnalogReference
  • Vref – If you’re using an external voltage reference, set its value here in millivolts. If you are using the internal reference, then just leaving this at 1100 is fine.
  • VoltsPerWatt – The output of your sensor, in volts per watt. The surplus Ophir heads output 1V/W. However, particularly high or low power systems could vary.
  • SENSOR – The analog pin to which your signal will be fed. Default is 1, but any analog pin on the Arduino will work.
  • BUFFER_SIZE – This is the defined buffer size for all the buffers that are used in OpenLPM. This value is conservatively set at 64 and should never need to change, but it’s here for standardization purposes and to ease the modification of OpenLPM.
  • STREAM_MODE – The method used for formatting the output of OpenLPM. If this is set to 0, the standard output format will be used (1234.56\n). If this is set to 1, the custom format will be used.
  • DATASTREAM_FORMAT – User-defined custom datastream formatting. The whole number component of the readings is “$w” and the fractional value is “$f.” For example, the format that is used by default would be defined as “$w.$f\n” for compatibility with most programs. By using this setting, you can make your solution compatible with any datalogger available as long as it does not use a handshake. So, if you have purchased any other laser power meter, you would be able to used its bundled logging software with your custom LPM.
  • PRECISION – The number of decimal places to display. Up to 6 are supported (8 if you really want to, but you’ll have to change the config validation), but any more than 1 or 2 will just make your datastream look messy and not give you any meaningful data.
  • EU – If this setting is set to 1, then a “,” will be used instead of a “.” In the default datastream format.

Uploading

Once you’ve configured it to your liking, now you can compile and upload. First, drop down the “Tools” menu and click the “Board” option. Choose the board you are using from the menu. You will most likely be using an Uno or a Nano with an ATMega828 – these are the first two options. After doing that, select “Serial Port” from the “Tools” menu and choose the proper serial port that your Arduino is residing on. Once you do that, drop down the “File” menu and select “Upload to I/O Board” (or click the upload button at the top of the IDE).

After you upload, go to the “Tools” menu and choose the “Serial Monitor” option. Ensure that the proper baud rate is chosen, and confirm that your Arduino is streaming data as you expected.

Application

Once you’ve got your Arduino with OpenLPM flashed onto it, then you can drop it into your circuit. Just make sure you’re running the signal voltage from your sensor circuit into the right Arduino pin and that you’re powering it according to the pages found on arduino.cc.

Recommended Hardware

I recommend getting first-party hardware for OpenLPM. There are knockoff Arduinos on eBay from Chinese sources for ~$10, but the quality is questionable and I personally stay away from them.

  • Arduino Nano - Excellent form factor, though there is a potential power issue that I'm waiting to hear back from Gravitech about.
  • Arduino Uno - The standard form factor Arduino.

To Do
  • Modify a version of Luminosity to serve as a default datalogger for OpenLPM.
  • Add an option for setting voltage reference in case of USB-only power.
  • Photograph, diagram, and upload information on my sample OpenLPM circuit.

Known Issues
  • When powering from USB, the voltage reference will sag, skewing readings high. When possible, be sure to power through the Vin pin with 6-12V or with a 5V regulated supply via the 5V pin.
  • When using external power, if the device is then connected to USB, Windows will sometimes will flag the USB device as malfunctioning. This is a known issue with the Arduino Nano, and I am currently waiting to hear back from Gravitech regarding a fix.

Licensing

OpenLPM is under the GNU GPLv3. The simple English version of Wikipedia gives a rather nice, concise explanation of what this license means.
There are two main terms to the license. Both apply to giving the program away or selling it.
  • A copy of the source code or written instructions about how to get a copy must be included with the software. If the software is able to be downloaded from the internet, the source code must also be available for downloading.
  • The license of the software cannot be changed or removed. It must always use the GPL.
If the user does not agree to follow the GPL, they can still use the software under copyright laws. They can use it and make copies or changes to it for themselves, but they cannot give it away or sell it. They also cannot change the license.
So, even if you’re giving it away a modified copy of OpenLPM, the recipient must be given the source code or instructions on where to download it – and it also must carry the GPL license.

If you’re selling a product, any recipient of the product must be given the source code, because a compiled binary must always be accompanied by its source code.

Any derivative of OpenLPM must be under GNU GPLv3.

This licensing model is extremely important to the goal of OpenLPM. There are three main goals here:
  • Give hobbyists access to a DIY datalogging LPM for only the cost of hardware.
  • Remove a barrier to entry (programming) to the hobbyist LPM market in an effort to turn it into more of a buyers’ market.
  • Give interested parties a laser-related embedded source so that they can go on to develop a brand new, advanced hobbyist LPM.

OpenLPM being under GNU GPLv3 goes a long way toward achieving these goals.

Downloads

Current version: https://dl.dropboxusercontent.com/u/6083542/OpenLPM/OpenLPM_Mk_I_2_1_1_5B.zip
Old version: https://dl.dropboxusercontent.com/u/6083542/OpenLPM/OpenLPM_Mk_I_1_0_2_1.zip

Support

I am currently paying for all of the costs of this project out-of-pocket. If you'd like to support the ongoing development of OpenLPM monetarily, I very much appreciate the support.



Supporters
  • Me!
  • ddewees
  • lazeerer
  • rhd

Conclusion

I’m really excited to see where this goes. I know at least a couple people are excited to work with it; I’m hoping we start to see OpenLPM-compatible hardware start to crop up.

I’ll be personally supporting this project and am happy to help anyone who needs help with the code.

Criticism and changes from outside developers are welcome – collaboration is one of the readings this project is open-source.

And there's my 3,000th post. Happy building!

-Trevor
 
Last edited:





Joined
Nov 7, 2008
Messages
5,725
Points
0
You have my attention! What a sweet project... Kudos, and I can't wait to see how this progresses!
 
Joined
Feb 5, 2008
Messages
6,252
Points
83
Man this looks so good. I really need to getmyself an Arduino board, I already have some leftover stuff from my previous unfinished LPM project, this should really be interesting.

Y'know you could post some eBay or whatever links to some good Arduino boards that will do the trick here.
 
Joined
Mar 23, 2011
Messages
2,095
Points
63
Looks like it's about time to order an Arduino. :)

Although I need to figure out what all the differences are between an Arduino and my teensy 2.0 board. It would be nice to be able to reuse some of my existing hardware.
 
Last edited:

rhd

0
Joined
Dec 7, 2010
Messages
8,475
Points
0
I'll shoot this out here - I've got a few models of this guy out for fabrication, and they should be here in a week or so.

attachment.php


This is a simple interface board for an Ophir sensor / LED readout / Arduino Nano USB Running OpemLPM. It's a plug-and-play, make your own LPM sort of deal that provides:

- The +/- voltage needed for the Ophir sensor
- A regulated 5V for use with typical LED readouts
- A pinout for the Arduino Nano USB board

Idealy, this is a simple way to use your Ophir with both an LED readout (for easy quick power readings) and with the OpenLPM system Trevor has setup (data logging etc).

I want to test the board prototypes once they arrive. Assuming they work as expected, the design will be donated to the forum. I'll share the Eagle design and PCB files. Anyone can fab their own, modify it, sell them, whatever they want.
 

Attachments

  • simplelpm.png
    simplelpm.png
    70.5 KB · Views: 3,107
Last edited:

Trevor

0
Joined
Jul 17, 2009
Messages
4,386
Points
113
You have my attention! What a sweet project... Kudos, and I can't wait to see how this progresses!

Thanks! I can't wait to keep moving forward. :)

Man this looks so good. I really need to getmyself an Arduino board, I already have some leftover stuff from my previous unfinished LPM project, this should really be interesting.

Y'know you could post some eBay or whatever links to some good Arduino boards that will do the trick here.

I posted links to the legit Arduinos; but you can search those names on eBay to find knockoffs if you're so inclined. I generally stay away from them though.

Looks like it's about time to order an Arduino. :)

Although I need to figure out what all the differences are between an Arduino and my teensy 2.0 board. It would be nice to be able to reuse some of my existing hardware.

I remember there being something about an addon for the Arduino IDE for Teensy. I'll have to poke around a bit. :)

-Trevor
 
Joined
Mar 23, 2011
Messages
2,095
Points
63
I remember there being something about an addon for the Arduino IDE for Teensy. I'll have to poke around a bit. :)

-Trevor

I think this is it,
Teensyduino - Add-on for Arduino IDE to use Teensy USB development board
I've played around with it before with some simple code, but to be honest I've never fully understood the differences in the hardware.

HTML:
Specification	Teensy	Teensy++	Arduino Uno
Processor	ATMEGA32U4	AT90USB1286	ATMEGA328
Flash Memory	32256	130048	32256
RAM Memory	2560	8192	2048
EEPROM Memory	1024	4096	1024
Total I/O	25	46	20
Analog Inputs	12	8	6
PWM (Analog Out)	7	9	6
USB Port	1	1	(serial only)

EDIT: Well it compiles and uploads to the Teensy board. So that's a good sign. Now I just need the rest of the hardware. :)

@RHD: That looks great! That takes the hard part out of it for people like me, I like plug and play. :D Does that take just a simple 12V DC power supply? Along with the sensor head and an LED panel and of course the Nano board?
 
Last edited:

rhd

0
Joined
Dec 7, 2010
Messages
8,475
Points
0
You've got it!

One version takes three 9V batteries.
One version takes a single 12V supply.

It's the second version that is untested. Otherwise I'd release the PCB now. If it works, obviously the second version is preferable.
 
Joined
Feb 1, 2008
Messages
2,894
Points
0
Congrats on the release Trevor! :beer:

Question: Is there any compatibility with Linux? Or will I have to run a virtual machine?
 
Last edited:
Joined
Mar 23, 2011
Messages
2,095
Points
63
Congrats on the release Trevor! :beer:

Question: Is there any compatibility with Linux? Or will I have to run a virtual machine?

If you are referring to the data logging functions, I don't know if anyone has something for Linux or not, but if you are just interested in programming the arduino from Linux, it looks like you can. Note: I have not tried any of this, so it's best to wait for someone else to chime in.

Arduino playground - Linux

DOH: Trevor beat me to it. :D
 
Last edited:
Joined
May 25, 2010
Messages
3,655
Points
0
This Looks Great.:beer:

I got an Ophir head a couple weeks ago so iam going to give this go.:)

:thanks:
 
Last edited:

ARG

0
Joined
Feb 27, 2011
Messages
6,772
Points
113
Great work!

I've currently got an Arduino Duemilanove (2009) will that work for this application?
 

Trevor

0
Joined
Jul 17, 2009
Messages
4,386
Points
113
Great work!

I've currently got an Arduino Duemilanove (2009) will that work for this application?

Yessir, it will!

jcranmer, glad to hear it's working so far for you. Just make sure that you modify your sensor pin setting accordingly, and you should be good.

rhd's design assumes an Arduino nano; so the pin config in that circuit is pretty application-specific. That being said, a modified design would be quite easy to put together. :)

-Trevor
 

mpwn

0
Joined
Aug 18, 2011
Messages
284
Points
0
great work ive been wanting to use my teensy for something, and now i can!
 




Top