Skip to content

Latest commit

 

History

History
46 lines (43 loc) · 1023 Bytes

README.md

File metadata and controls

46 lines (43 loc) · 1023 Bytes

Table of contents

General info

Simple dishwasher simulator based on message queues on Linux.

Technologies

Project is created with:

  • C
  • Makefile

Setup

  1. Install GCC
  2. Install MAKE for running Makefiles
  3. Clone this repository
  4. To run this project:
    • Run a main dishwasher controller
      $ cd ../dishwasher-simulator/main
      $ mkdir bin
      $ make
      $ ./bin/main
    • Run a heater controller
      $ cd ../dishwasher-simulator/heater
      $ mkdir bin
      $ make
      $ ./bin/main
    • Run a water pump controller
      $ cd ../dishwasher-simulator/pump
      $ mkdir bin
      $ make
      $ ./bin/main
    • Run a spray arms controller
      $ cd ../dishwasher-simulator/sprayarms
      $ mkdir bin
      $ make
      $ ./bin/main