Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lauszus/sanguino
Sanguino add-on for the Arduino IDE, based on http://code.google.com/p/sanguino/
https://github.com/lauszus/sanguino
arduino sanguino
Last synced: 7 days ago
JSON representation
Sanguino add-on for the Arduino IDE, based on http://code.google.com/p/sanguino/
- Host: GitHub
- URL: https://github.com/lauszus/sanguino
- Owner: Lauszus
- Created: 2012-09-23T19:16:17.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-08-29T13:43:08.000Z (about 1 year ago)
- Last Synced: 2024-10-16T08:12:15.575Z (23 days ago)
- Topics: arduino, sanguino
- Language: C
- Homepage: https://lauszus.github.com/Sanguino/
- Size: 400 KB
- Stars: 185
- Watchers: 23
- Forks: 96
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sanguino
#### Developed by Kristian Sloth Lauszus, 2012The code is released under the GNU General Public License.
_________
[![Build Status](https://travis-ci.org/Lauszus/Sanguino.svg?branch=master)](https://travis-ci.org/Lauszus/Sanguino)This is a Sanguino third-party hardware add-on for the Arduino IDE.
To use this add-on simply add the following url: to the Arduino boards manager. Please see the following page for more information: .
Advanced users can install the hardware add-on manually by creating a folder named "hardware" inside your sketchbook directory. Now move the Sanguino directory inside that folder. The structure would look like this:
* Arduino/
* hardware/
* Sanguino/
* avr/
* bootloaders/
* variants/
* README.md
* boards.txt## PlatformIO
It is also possible to use this add-on with [PlatformIO](https://platformio.org/). For instace you can use the Sanguino ATmega644 or ATmega644A running at 16 MHz by creating the following entry in your platformio.ini file:
```ini
[env:sanguino_atmega644p]
platform = atmelavr
framework = arduino
board = sanguino_atmega644p
```This will also allow you to specify the upload speed by adding the following entry:
```ini
upload_speed = 57600
```This is needed if you have not burned the Optiboot bootloader.
The list of boards can be found here: .
## ATmega1284
Since the ATmega1284 is not supported by Avrdude. You will have to burn the bootloader manually from the command line. See this file for help: [ATmega1284.md](bootloaders/optiboot/ATmega1284.md).
Also check out the following site for more information: .
For more information see the following site: [http://www.arduino.cc/en/Guide/Environment#thirdpartyhardware](http://www.arduino.cc/en/Guide/Environment#thirdpartyhardware)
or send me an email at [email protected].