Difference between revisions of "Arduino-mode"
Jump to navigation
Jump to search
(Created page with "{{Package |name=arduino-mode.el |description=Major mode for editing [http://www.arduino.cc/ Arduino] sketches |author=[https://github.com/bookest/ Christopher Grim] |maintaine...") |
|||
Line 29: | Line 29: | ||
== Helpful keybindings == | == Helpful keybindings == | ||
+ | <nowiki> | ||
+ | C-c . c Compile buffer | ||
+ | C-c . U Upload compiled buffer | ||
+ | </nowiki> | ||
<!-------------------------------------------------------------------------> | <!-------------------------------------------------------------------------> | ||
+ | |||
== Common Customization == | == Common Customization == | ||
<!-- Customization common to all platforms goes here --> | <!-- Customization common to all platforms goes here --> |
Revision as of 19:46, 26 October 2013
Description | Major mode for editing Arduino sketches |
---|---|
Author | Christopher Grim |
Maintainer | Christopher Grim |
Source | https://github.com/bookest/arduino-mode |
Part of Emacs | no |
arduino-mode is a major mode for editing Arduino sketches.
Basic setup
(setq auto-mode-alist (cons '("\\.\\(pde\\|ino\\)$" . arduino-mode) auto-mode-alist))
(autoload 'arduino-mode "arduino-mode" "Arduino editing mode." t)
Helpful keybindings
C-c . c Compile buffer C-c . U Upload compiled buffer