Skip to content

Commit

Permalink
Redirect for PiFire Documentation
Browse files Browse the repository at this point in the history
Redirect to https://nebhead.github.io/PiFire-Pages for PiFire Documentation
  • Loading branch information
nebhead committed Sep 13, 2024
1 parent 58d2d92 commit 4699827
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

***Warning:*** *The creator of this project takes no responsibility for any damage that you may do to your personal property including modifications to your smoker grill if you choose to use this project. The creator also takes no responsibility for any resulting harm or damages that may come from issues with the hardware or software design.* ***This project is provided for educational purposes, and should be attempted only by individuals who wish to assume all risks involved.***

***Note: (2020-12-29)*** *Full documentation including hardware and software installation guide are now located [here](https://nebhead.github.io/PiFire/) at the [https://nebhead.github.io/PiFire/](https://nebhead.github.io/PiFire/).*
***Note: (2020-12-29)*** *Full documentation including hardware and software installation guide are now located [here](https://nebhead.github.io/PiFire-Pages) at the [https://nebhead.github.io/PiFire-Pages](https://nebhead.github.io/PiFire-Pages).*

### Introduction
This project was inspired by user dborello and his excellent PiSmoker project (http://engineeredmusings.com/pismoker/ and https://github.com/DBorello/PiSmoker). I encourage you to check it out and get a rough idea of how this all works. This particular project was built around a Traeger Texas smoker grill platform, but should work for most older Traeger models (or other brands with similar parts like the older Pit Boss) built with similar parts (fan, auger, and igniter). I've built the code in a way to be somewhat modular & extensible such that you can replace the grill platform with your own specific platform instead. Newer Traeger grills with their newer wifi enabled controllers have DC components (instead of the AC Fan / Auger) and aren't covered by this project.
Expand Down Expand Up @@ -93,15 +93,15 @@ And if you're interested in seeing more builds from other users, we have a discu

## Full Documentation / Hardware and Software Installation

The full documentation has been moved to a GitHub page here: [https://nebhead.github.io/PiFire/](https://nebhead.github.io/PiFire/)
The full documentation has been moved to a GitHub page here: [https://nebhead.github.io/PiFire-Pages](https://nebhead.github.io/PiFire-Pages)

### Discord
I've added a discord server [here](https://discord.gg/F9mbCrbrZS) which can be a great resource for all who want to get more information, want to share their own builds, or just chat about pellet cooking. Looking forward to seeing you there.

### Updates

* 9/2020 - Initial Release
* 12/2020 - Moved documentation to [https://nebhead.github.io/PiFire/](https://nebhead.github.io/PiFire/)
* 12/2020 - Moved documentation to [https://nebhead.github.io/PiFire-Pages](https://nebhead.github.io/PiFire-Pages)
* 11/2021 - Many new features, bug fixes, and improvements. New hardware support etc. which have been in incorporated over the last year, have been merged from the development branch
* 4/2022 - Release v1.3.1 - Another HUGE release with many new features including an updater, a new configuration wizard, bug fixes, Smart Start feature and much, much more!
* 6/2022 - Release v1.3.3 - Lot's of changes for this latest stable release for June 2022. It's been a busy couple of months and we've had a few bug fixes pulled into this latest version, including an installer bug. The display modules have been completely overhauled in this latest release to improve responsiveness and capabilities. We've added a module for the ILI1394 with rotary encoder support, which is a nice option for those who like to use a dial with push button to interface the menu system. When doing the update, consider doing a full reboot (instead of just restarting the server) to ensure connected display devices are fully reset.
Expand Down
39 changes: 39 additions & 0 deletions gh-pages/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Redirecting to PiFire Documentation</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
img {
max-width: 200px;
margin-bottom: 20px;
}
p {
font-size: 18px;
color: #333;
}
</style>
<meta http-equiv="refresh" content="2;url=https://nebhead.github.io/PiFire-Pages">
</head>
<body>
<img src="pifire-logo.png" alt="PiFire Logo">
<p>Redirecting to documentation for PiFire...</p>
<a href="https://nebhead.github.io/PiFire-Pages">https://nebhead.github.io/PiFire-Pages</a>
<script>
setTimeout(function() {
window.location.href = "https://nebhead.github.io/PiFire-Pages";
}, 2000);
</script>
</body>
</html>
Binary file added gh-pages/pifire-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4699827

Please sign in to comment.