Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TemperatureControlPublicAccess.h Source File

TemperatureControlPublicAccess.h

00001 #ifndef __TEMPERATURECONTROLPUBLICACCESS_H
00002 #define __TEMPERATURECONTROLPUBLICACCESS_H
00003 
00004 // addresses used for public data access
00005 #define temperature_control_checksum      CHECKSUM("temperature_control")
00006 #define hotend_checksum                   CHECKSUM("hotend")
00007 #define bed_checksum                      CHECKSUM("bed")
00008 #define current_temperature_checksum      CHECKSUM("current_temperature")
00009 #define target_temperature_checksum       CHECKSUM("target_temperature")
00010 #define temperature_pwm_checksum          CHECKSUM("temperature_pwm")
00011 
00012 struct pad_temperature {
00013     float current_temperature;
00014     float target_temperature;
00015     int pwm;
00016 };
00017 #endif