Michael Spencer / Smoothie

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Revision:
2:1df0b61d3b5a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/modules/tools/temperaturecontrol/TemperatureControlPublicAccess.h	Fri Feb 28 18:52:52 2014 -0800
@@ -0,0 +1,17 @@
+#ifndef __TEMPERATURECONTROLPUBLICACCESS_H
+#define __TEMPERATURECONTROLPUBLICACCESS_H
+
+// addresses used for public data access
+#define temperature_control_checksum      CHECKSUM("temperature_control")
+#define hotend_checksum                   CHECKSUM("hotend")
+#define bed_checksum                      CHECKSUM("bed")
+#define current_temperature_checksum      CHECKSUM("current_temperature")
+#define target_temperature_checksum       CHECKSUM("target_temperature")
+#define temperature_pwm_checksum          CHECKSUM("temperature_pwm")
+
+struct pad_temperature {
+    float current_temperature;
+    float target_temperature;
+    int pwm;
+};
+#endif
\ No newline at end of file