# HISTORY # 28 june 2023 # added pro mini board # 22 June 2023 # revising this makefile for use with the stackmash.ino c code. # # INFO # # A Makefile for compiling arduino c code in the bash shell. # Type "make" in this folder to use it. You may have to change # the board tag (uncomment/comment out) and the port depending # on the board and computer. # use "make board_tags" to find values for boards # The tag for the arduino pro pico board #BOARD_TAG=pro328 #BOARD_TAG=uno # tag for duemilanova arduino board BOARD_TAG=atmega328 #ARDUINO_PORT = /dev/cu.usb* # On my old Asus E402M the port is /dev/ttyUSB etc ARDUINO_PORT = /dev/ttyUSB* # below is the serial programming for with a usb cable and freetronics #ARDUINO_PORT = /dev/ttyACM* #ARDUINO_LIBS = Ethernet Ethernet/utility SPI # The cryptic syntax for multiple libraries, here it is. # Include any libraries used here. ARDUINO_LIBS+=Servo \ EEPROM include /usr/share/arduino/Arduino.mk