Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tclem/vim-arduino
Compile and Deploy Arduino sketches in Vim
https://github.com/tclem/vim-arduino
Last synced: 23 days ago
JSON representation
Compile and Deploy Arduino sketches in Vim
- Host: GitHub
- URL: https://github.com/tclem/vim-arduino
- Owner: tclem
- Created: 2011-09-27T15:16:11.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-03-03T20:55:00.000Z (almost 11 years ago)
- Last Synced: 2024-11-18T13:46:04.123Z (3 months ago)
- Language: VimL
- Homepage:
- Size: 5.26 MB
- Stars: 118
- Watchers: 13
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- stars - tclem/vim-arduino
README
# Vim Arduino
This script allows you to compile and deploy Arduino (*.pde) sketches
directly from Vim. I haven't had the time or need to keep this project up to date, but it looks like [jplaut/vim-arduino-ino](https://github.com/jplaut/vim-arduino-ino/) is another good option for similar functionality.## Install
The plugin should be organized in a manner that works well with
pathogen. I personally use [janus][janus] to manage my MacVim setup so
adding this line to my `~/.janus.rake` file does the trick:```
vim_plugin_task "vim-arduino", "https://github.com/tclem/vim-arduino.git"
```## Usage
You must have a pde (Arduino sketch) open in the current buffer.
`ac` - Compile the current sketch.
`ad` - Compile and deploy the current sketch.
`as` - Open a serial port in `screen`.
The default key mapping can be turned off by doing this in your `.vimrc`:
```
let g:vim_arduino_map_keys = 0
```## Configuration
There are a few settings you might need to set:
```
"Default: /Applications/Arduino.app/Contents/Resources/Java
let g:vim_arduino_library_path = /path/to/arduino/installation
"Default: result of `$(ls /dev/tty.* | grep usb)`
let g:vim_arduino_serial_port = /my/serial/port
```## Requirements
You must have the [Arduino][arduino] IDE installed. Currently only
Version 0022 is supported.[arduino]: http://arduino.cc/en/Main/Software
[janus]: https://github.com/carlhuda/janus