Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / warehouse / Forklift.h @ 2011

History | View | Annotate | Download (322 Bytes)

1 2004 tmullins
#ifndef _FORKLIFT_H_
2
#define _FORKLIFT_H_
3
4
#define FORKLIFT_ERROR -1
5
6
namespace Forklift
7
{
8
  void forklift_init();
9
  int get_tracking_id(); // 0x41 for all forklifts
10
  int get_serial_number(); // unique to each forklift
11
  int get_height();
12
  int get_height_setpoint();
13 2011 tmullins
  int set_height_setpoint(char setpoint);
14 2004 tmullins
};
15
16
#endif