Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
630 B

namespace RaspiControl {
public static class MqttConstants {
#region Publish
public const string MOBILE_NAV_TURN_TOPIC = "/mobile/cmd/nav/turn/";
public const string MOBILE_NAV_MOVE_TOPIC = "/mobile/cmd/nav/move/";
public const string MOBILE_NAV_STOP_TOPIC = "/mobile/cmd/nav/stop/";
public const string SPLITFLAP_DISPLAY_TOPIC = "/splitFlap/cmd/display/";
public const string SPLITFLAP_INIT_TOPIC = "/splitFlap/cmd/init/";
#endregion
#region subscribe
public const string DEVICE_STATUS_APP_TOPIC = "/device/status/+/app";
#endregion
}
}