Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 669 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 669 Bytes

QR Code Generator

This project is a custom implementation of a QR code generator in C++, supporting up to version 40 QR codes. The goal is to understand the structure and encoding process of QR codes.

Inspiration

I got the inspiration for this project from this video on YouTube.

I am trying to recreate the logic behind QR codes and how they represent data.

Building the Project

  1. Make sure you have CMake and a C++ compiler installed.

  2. Clone the repository.

  3. Run the following commands:

    mkdir build
    cd build
    cmake ..
    make

Running