Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
Release v1.0.0
  • Loading branch information
delphidabbler committed Dec 27, 2024
2 parents 95543ec + 9058214 commit c5cfd61
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Change Log

This file records all significant changes in release of the project. Releases are sorted with the latest release first.

## v1.0.0 - 2024-12-27

* Fixed a bug in `debug.h` to ensure the file is only included once.
* Added change log in `CHANGELOG.md`.
* Rewrote `README.md`.

## v0.1.0-beta - 2024-04-30

First beta release.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# gate-alarm

🚧 Under construction 🚧
## Overview

Project to sense when a gate is opened and to sound an alarm when this happens.
A electronics project to sense when a gate is opened and to sound an alarm when this happens.

This repository contains the project's microcontroller source code as it is developed. A description of the project along with details of progress can be found on the [Gate Alarm](https://cahamo.delphidabbler.com/projects/gate-alarm/) page of the [Cahamo](https://cahamo.delphidabbler.com) website.
A description of the project along with details of progress can be found on the [Gate Alarm](https://cahamo.delphidabbler.com/projects/gate-alarm/) page of the [Cahamo](https://cahamo.delphidabbler.com) website.

This repository contains the project's microcontroller source code.

## Source Code

The source code was developed in VSCode using the PlatformIO extension. It is written for the Arduino framework in C++. The code is targetted at an Arduino Nano.

In addition to the Arduino library some 3rd party libraries are required. See `platformio.ini` for details.

## Change Log

See `CHANGELOG.md` for details of changes in each release.

## License

The source code contained in this repository is [MIT Licensed](https://cahamo.mit-license.org/).
3 changes: 2 additions & 1 deletion controller/src/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
* DEBUG macro is defined.
*/

#ifndef _DEBUG_H
#ifndef DEBUG_H

#define DEBUG_H

#ifdef DEBUG
Expand Down

0 comments on commit c5cfd61

Please sign in to comment.