This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Docker Compose configuration for setting up a Redis container with a health check | |
| # | |
| # This configuration pulls the latest Redis image and sets up a health check | |
| # to monitor if the Redis service is running properly. The health check uses | |
| # the 'redis-cli ping' command, which returns 'PONG' if Redis is healthy. | |
| # | |
| # Optional configurations include volume mounting for persistence, logging setup, | |
| # and security options. | |
| services: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Docker Compose configuration for setting up a PostgreSQL container with a health check | |
| # | |
| # This configuration pulls the latest PostgreSQL image and sets up a health check | |
| # to monitor if the PostgreSQL service is ready to accept connections. The health check | |
| # uses the 'pg_isready' command to check database readiness. | |
| # | |
| # Environment variables are used to configure PostgreSQL credentials and database settings. | |
| services: | |
| postgres: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file StepperAndAS5047P.cpp | |
| * @author Jonas Merkle [JJM] (jonas@jjm.one) | |
| * @brief This software reads an AS5047P sensor while generating a pulse series | |
| * to control a stepper motor which is connected to an A4988 stepper driver. | |
| * @version 0.2 | |
| * @date 2021-04-10 | |
| * | |
| * @copyright Copyright (c) 2021 | |
| * |