Merge remote-tracking branch 'upstream/edge' into upstream-master
[clinton/Smoothieware.git] / src / modules / tools / laser / Laser.h
CommitLineData
de91760a 1/*
4cff3ded
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
de91760a 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
4cff3ded
AW
6*/
7
8#ifndef LASER_MODULE_H
9#define LASER_MODULE_H
10
4cff3ded 11#include "libs/Module.h"
4cff3ded 12
1f19c40d
JM
13namespace mbed {
14 class PwmOut;
15}
f5598f5b 16
4cff3ded
AW
17class Laser : public Module{
18 public:
e605a0d6 19 Laser();
eeef2894 20 virtual ~Laser() {};
4cff3ded 21 void on_module_loaded();
a2cd92c0
AW
22 void on_block_end(void* argument);
23 void on_block_begin(void* argument);
4cff3ded
AW
24 void on_gcode_execute(void* argument);
25 void on_speed_change(void* argument);
26
1f19c40d
JM
27 private:
28 void set_proportional_power();
29 mbed::PwmOut *laser_pin; // PWM output to regulate the laser power
86fa0b93
JM
30 struct {
31 bool laser_on:1; // Laser status
32 bool laser_inverting:1; // stores whether the pwm period should be inverted
33 };
6e986d7e
BC
34 float laser_maximum_power; // maximum allowed laser power to be output on the pwm pin
35 float laser_minimum_power; // value used to tickle the laser on moves. Also minimum value for auto-scaling
024545c5 36 float laser_power; // current laser power
4cff3ded
AW
37};
38
2f37949e 39#endif