Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ssoudan/autocooker
Arduino-based cooking assistant that help you cook a meal multiple times at some given temperature
https://github.com/ssoudan/autocooker
Last synced: 6 days ago
JSON representation
Arduino-based cooking assistant that help you cook a meal multiple times at some given temperature
- Host: GitHub
- URL: https://github.com/ssoudan/autocooker
- Owner: ssoudan
- License: apache-2.0
- Created: 2014-12-20T19:54:41.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-21T10:24:27.000Z (about 10 years ago)
- Last Synced: 2023-03-29T13:41:37.538Z (almost 2 years ago)
- Language: C++
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Arduino AutoCooker
Sebastien Soudan
# Description
This project is an Arduino-based cooking assistant that help you cook a meal multiple times at some given temperature.
You can find more details about it on my [blog](http://ssoudan.eu/posts/2014-12-22-arduino-bourguignon.html).
# Installation
This project uses a `Makefile` based on [sudar/Arduino-Makefile][https://github.com/sudar/Arduino-Makefile]. In order to build, you'll need that plus few libraries that are listed in the `Makefile`.
You can change `ARDMK_DIR` in the `Makefile` to make it point to the location where you have installed `sudar/Arduino-Makefile`.
In term of libraries, you'll need:
- Wire
- Wire/utility
- TinkerKit
- MAX6675
- Adafruit-MCP23017
- AdafruitLCD
- Adafruit_SSD1306Once they have been installed you can build and upload the design to your board with:
$ make
...
/Applications/Arduino-1.0.5.app/Contents/Resources/Java/hardware/tools/avr/bin/avr-size --mcu=atmega328p -C --format=avr build-uno/AutoCooker_Uno_V0.elf
AVR Memory Usage
----------------
Device: atmega328pProgram: 15028 bytes (45.9% Full)
(.text + .data + .bootloader)Data: 1847 bytes (90.2% Full)
(.data + .bss + .noinit)$ make ispload
...# License
Copyright 2014 Sebastien Soudan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.