Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (321 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
  int set_height_setpoint(int setpoint);
14
};
15
16
#endif