2019-11-23 14:09:44 +00:00
# WIP
## Solution Information
2019-11-30 13:41:50 +00:00
An attempt to create a remote controlled toy car.
2020-02-02 14:47:47 +00:00
Powered by Raspberry Pi and .Net Core 3.1.
https://docs.microsoft.com/en-us/dotnet/core/install/
2019-11-30 13:41:50 +00:00
2019-12-23 22:46:28 +00:00
[![CircleCI ](https://circleci.com/gh/dnutiu/NucuCar.svg?style=svg )](https://circleci.com/gh/dnutiu/NucuCar)
2019-11-30 13:41:50 +00:00
2019-11-23 14:09:44 +00:00
### NucuCar.Domain
2020-05-01 08:29:59 +00:00
Holds common classes and interfaces that are required by the projects.
2019-11-23 14:09:44 +00:00
It provides all the types that are generated via protocol buffers.
2020-05-01 08:29:59 +00:00
### NucuCar.Common
Contains implementations for common logic, contains wrappers.
Usually utility classes and methods that are not necessarily tied to this solution
and can be reused.
### NucuCar.Telemetry
Holds concrete implementation for telemetry publishers and workers.
2019-11-23 14:09:44 +00:00
### NucuCar.Sensors
Manages all the car sensors. For more info see the readme file located in the project directory.
### NucuCar.TestClient
Command line utility to play around with the car functionality. You can use it to remotely read data from the sensors via gRPC methods and to publish and read telemetry data.
---
2019-11-09 16:01:16 +00:00
### Building and Running.
2019-11-24 12:29:28 +00:00
To build the project and target the Raspberry Pi you can use the following command:
2019-11-09 16:01:16 +00:00
```$xslt
2019-11-24 12:29:28 +00:00
dotnet build --runtime linux-arm -p:PublishSingleFile=true
2019-11-09 16:01:16 +00:00
```
2019-12-23 22:21:56 +00:00
---