emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 57a15ffa8ecd7a48bd4fba7edfd7c0da6c145bff 3238 bytes (raw)
name: contrib/lisp/ob-arduino.el 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
 
;;; ob-arduino.el --- Org-mode Babel support for Arduino.
;;
;; Authors: stardiviner <numbchild@gmail.com>
;; Package-Requires: ((emacs "24.4") (org "24.1"))
;; Package-Version: 1.0
;; Keywords: arduino org babel
;; homepage: https://github.com/stardiviner/arduino-mode
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
;;
;;; Commentary:
;; 
;; Like the following src block, press =[C-c C-c]= to upload to Arduino board.
;; 
;; #+begin_src arduino
;; // the setup function runs once when you press reset or power the board
;; void setup() {
;;   // initialize digital pin LED_BUILTIN as an output.
;;   pinMode(LED_BUILTIN, OUTPUT);
;; }
;; 
;; // the loop function runs over and over again forever
;; void loop() {
;;   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
;;   delay(100);                       // wait for 0.1 second
;;   digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
;;   delay(100);                       // wait for 0.1 second
;; }
;; #+end_src
;;
;;; Code:
\f
(require 'org)
(require 'ob)
(require 'arduino-mode)

(defgroup ob-arduino nil
  "org-mode blocks for Arduino."
  :group 'org)

(defcustom ob-arduino:program "arduino"
  "Default Arduino program name."
  :group 'ob-arduino
  :type 'string)

(defcustom ob-arduino:port "/dev/ttyACM0"
  "Default Arduino port."
  :group 'ob-arduino
  :type 'string)

(defcustom ob-arduino:board "arduino:avr:uno"
  "Default Arduino board."
  :group 'ob-arduino
  :type 'string)


(defvar org-babel-default-header-args:sclang nil)

;;;###autoload
(defun org-babel-execute:arduino (body params)
  "org-babel arduino hook."
  (let* ((port (cdr (assoc :port params)))
         (board (cdr (assoc :board params)))
         (cmd (mapconcat 'identity (list
                                    ob-arduino:program "--upload"
                                    (if port (concat "--port " port))
                                    (if board (concat "--board " board))
                                    ) " "))
         (code (org-babel-expand-body:generic body params))
         (src-file (org-babel-temp-file "ob-arduino-" ".ino")))
    ;; delete all `ob-arduino' temp files, otherwise arduino will compile all
    ;; ob-arduino temp files, and report error.
    (mapc
     (lambda (f)
       (unless (file-directory-p f)
         (delete-file (expand-file-name f org-babel-temporary-directory))))
     (directory-files
      (file-name-directory (org-babel-temp-file "ob-arduino-" ".ino"))
      nil ".ino"))
    ;; specify file for arduino command.
    (with-temp-file src-file
      (insert code))
    (org-babel-eval
     (concat ob-arduino:program
             " " "--upload"
             " " (if port (concat "--port " port))
             " " (if board (concat "--board " board))
             " " src-file)
     "" ; pass empty string "" as `BODY' to `org-babel--shell-command-on-region'
     ;; to fix command `arduino' don't accept string issue.
     )
    ))


;;;###autoload
(eval-after-load 'org
  '(add-to-list 'org-src-lang-modes '("arduino" . arduino)))


\f

(provide 'ob-arduino)

;;; ob-arduino.el ends here

debug log:

solving 57a15ffa8e ...
found 57a15ffa8e in https://git.savannah.gnu.org/cgit/emacs/org-mode.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).