An open API service indexing awesome lists of open source software.

https://github.com/csvitor-dev/frost-iot

A small project as a pseudo-IOT application for a "smart refrigerator", proposed as a work for the Computer Networking 'Redes de Computadores' discipline. The purpose of the work is to plan and implement an application layer protocol that consumes TCP/IP socket programming using Golang end-to-end.
https://github.com/csvitor-dev/frost-iot

golang iot protocol socket-programming web

Last synced: 28 days ago
JSON representation

A small project as a pseudo-IOT application for a "smart refrigerator", proposed as a work for the Computer Networking 'Redes de Computadores' discipline. The purpose of the work is to plan and implement an application layer protocol that consumes TCP/IP socket programming using Golang end-to-end.

Awesome Lists containing this project

README

        

# `frost-iot` | IOT Pseudo-Application with _Golang_

## Development Flow

Whenever you are going to perform a task associated with an **Issue**, create a new _branch_:

```bash
git checkout -b your-branch
```

When finished, create a **Pull Request** for the `main` _branch_!

## Project Structure

```text
├───cmd
│ ├───client
│ ├───device
│ └───server
├───examples
├───internal
│ ├───messages
│ │ ├───constants
│ │ ├───requests
│ │ └───responses
│ ├───owtp
│ ├───socket
│ │ ├───process
│ │ └───transporters
│ └───types
├───pkg
│ └───types
└───src
├───actuators
├───client
├───device
├───manager
├───sensors
└───view
```