Difference between revisions of "Arduino-mode"

From WikEmacs
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...")
 
(rm emacswiki word)
 
(One intermediate revision by one other user not shown)
Line 15: Line 15:
 
<!-----YOU CAN DELETE STUFF THAT ARE USELESS IN THE FINAL PAGE YOU ARE WRITING ------->
 
<!-----YOU CAN DELETE STUFF THAT ARE USELESS IN THE FINAL PAGE YOU ARE WRITING ------->
 
<!-----FEW MONTHS, YEARS FROM WE CAN DELETE STUFF. NOT NOW ------------------>
 
<!-----FEW MONTHS, YEARS FROM WE CAN DELETE STUFF. NOT NOW ------------------>
<!-----YOU DON"T WANT WIKEMACS TO BE ANOTHER EMACSWIKI RIGHT ------------------>
 
 
<!-----PLEASE BE PATIENT AND CO-OPERATE FOR GREATER GOOD ------------------>
 
<!-----PLEASE BE PATIENT AND CO-OPERATE FOR GREATER GOOD ------------------>
  
Line 29: Line 28:
 
== 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 -->

Latest revision as of 10:42, 17 May 2017

arduino-mode.el
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

Common Customization

GNU/Linux

OS X

Windows

Emacs-24

Emacs-23

Recommended Reading

Project Pages

Tutorial Pages