├── screenshot ├── img_choose_board.png ├── img_choose_param.png ├── img_choose_temp.png ├── img_example_cpp_style.png └── img_example_sketch_style.png ├── arduino_cpp_style ├── arduino_logo.png ├── main.cpp ├── project.pro ├── Makefile ├── wizard.xml └── project.pro.user ├── arduino_sketch_style ├── arduino_logo.png ├── main.cpp ├── project.ino ├── project.pro ├── Makefile ├── wizard.xml └── project.pro.user ├── .gitignore ├── README.md └── LICENSE /screenshot/img_choose_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/screenshot/img_choose_board.png -------------------------------------------------------------------------------- /screenshot/img_choose_param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/screenshot/img_choose_param.png -------------------------------------------------------------------------------- /screenshot/img_choose_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/screenshot/img_choose_temp.png -------------------------------------------------------------------------------- /arduino_cpp_style/arduino_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/arduino_cpp_style/arduino_logo.png -------------------------------------------------------------------------------- /arduino_sketch_style/arduino_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/arduino_sketch_style/arduino_logo.png -------------------------------------------------------------------------------- /screenshot/img_example_cpp_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/screenshot/img_example_cpp_style.png -------------------------------------------------------------------------------- /screenshot/img_example_sketch_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cleitonsouza01/qt-creator-arduino/HEAD/screenshot/img_example_sketch_style.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | 4 | #Capitalise initial letter in template filenames for consistency/sorting 5 | [._]*.s[a-w][a-z] 6 | [._]s[a-w][a-z] 7 | 8 | # OS generated files # 9 | ###################### 10 | .DS_Store 11 | .DS_Store? 12 | ._* 13 | .Spotlight-V100 14 | .Trashes 15 | ehthumbs.db 16 | Thumbs.db 17 | 18 | # VIM session 19 | *.un~ 20 | Session.vim 21 | .netrwhist 22 | *~ 23 | 24 | -------------------------------------------------------------------------------- /arduino_sketch_style/main.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Project: %ProjectName% 3 | Board: %BOARD_TAG% 4 | MCU: %BOARD_MCU% 5 | FRENQUENCY: %BOARD_F% 6 | 7 | Created using QtCreator 8 | */ 9 | #ifndef ARDUINO_H 10 | #define ARDUINO_H 11 | #include 12 | #endif 13 | 14 | int main() 15 | { 16 | // Initialize Arduino Librairies 17 | init(); 18 | 19 | setup(); 20 | 21 | while (1) 22 | { 23 | loop(); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /arduino_cpp_style/main.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | Project: %ProjectName% 3 | Board: %BOARD_TAG% 4 | MCU: %BOARD_MCU% 5 | FRENQUENCY: %BOARD_F% 6 | 7 | Created using QtCreator 8 | */ 9 | 10 | #include 11 | 12 | #define LED_PIN 13 13 | #define DELAY_MS 1000 14 | 15 | int main() 16 | { 17 | // Initialize Arduino Librairies 18 | init(); 19 | 20 | pinMode(LED_PIN, OUTPUT); 21 | 22 | while (1) 23 | { 24 | digitalWrite(LED_PIN, HIGH); 25 | delay(DELAY_MS); 26 | digitalWrite(LED_PIN, LOW); 27 | delay(DELAY_MS); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /arduino_sketch_style/project.ino: -------------------------------------------------------------------------------- 1 | /* 2 | Project: %ProjectName% 3 | Board: %BOARD_TAG% 4 | MCU: %BOARD_MCU% 5 | FRENQUENCY: %BOARD_F% 6 | 7 | Created using Qt Creator 8 | */ 9 | #ifndef ARDUINO_H 10 | #define ARDUINO_H 11 | #include 12 | #endif 13 | 14 | //****************************** 15 | //* FUNCTIONS SECTION 16 | //* Always create your functions here, before setup() and loop() functions 17 | #define LED_PIN 13 18 | #define DELAY_MS 300 19 | bool vStatus=false; 20 | 21 | void updateLED() 22 | { 23 | if (vStatus) 24 | { 25 | digitalWrite(LED_PIN, LOW); 26 | } 27 | else 28 | { 29 | digitalWrite(LED_PIN, HIGH); 30 | } 31 | vStatus = !vStatus; 32 | } 33 | 34 | 35 | 36 | //****************************** 37 | //* SETUP AND LOOP SECTION 38 | //* Always leave setup() and loop() functions at the end of file 39 | void setup() 40 | { 41 | pinMode(LED_PIN, OUTPUT); 42 | } 43 | 44 | void loop() 45 | { 46 | updateLED(); 47 | delay(DELAY_MS); 48 | } 49 | 50 | 51 | -------------------------------------------------------------------------------- /arduino_cpp_style/project.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 4 | # 5 | #------------------------------------------------- 6 | 7 | SOURCES += main.cpp 8 | 9 | HEADERS += 10 | 11 | DISTFILES += \ 12 | Makefile 13 | 14 | INCLUDEPATH = %ARDUINO_DIR%/hardware/arduino/avr/cores/arduino \ 15 | %ARDUINO_DIR%/libraries/Bridge/src \ 16 | %ARDUINO_DIR%/libraries/Esplora/src \ 17 | %ARDUINO_DIR%/libraries/Ethernet/src \ 18 | %ARDUINO_DIR%/libraries/Firmata/src \ 19 | %ARDUINO_DIR%/libraries/GSM/src \ 20 | %ARDUINO_DIR%/libraries/LiquidCrystal/src \ 21 | %ARDUINO_DIR%/libraries/Robot_Control/src \ 22 | %ARDUINO_DIR%/libraries/RobotIRremote/src \ 23 | %ARDUINO_DIR%/libraries/Robot_Motor/src \ 24 | %ARDUINO_DIR%/libraries/SD/src \ 25 | %ARDUINO_DIR%/libraries/Servo/src \ 26 | %ARDUINO_DIR%/libraries/SpacebrewYun/src \ 27 | %ARDUINO_DIR%/libraries/Stepper/src \ 28 | %ARDUINO_DIR%/libraries/Temboo/src \ 29 | %ARDUINO_DIR%/libraries/TFT/src \ 30 | %ARDUINO_DIR%/libraries/WiFi/src \ 31 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/EEPROM \ 32 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/SoftwareSerial \ 33 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/SPI \ 34 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/Wire 35 | 36 | 37 | -------------------------------------------------------------------------------- /arduino_sketch_style/project.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 4 | # 5 | #------------------------------------------------- 6 | 7 | SOURCES += main.cpp \ 8 | %ProjectName%.ino 9 | 10 | HEADERS += 11 | 12 | DISTFILES += \ 13 | Makefile 14 | 15 | INCLUDEPATH = %ARDUINO_DIR%/hardware/arduino/avr/cores/arduino \ 16 | %ARDUINO_DIR%/libraries/Bridge/src \ 17 | %ARDUINO_DIR%/libraries/Esplora/src \ 18 | %ARDUINO_DIR%/libraries/Ethernet/src \ 19 | %ARDUINO_DIR%/libraries/Firmata/src \ 20 | %ARDUINO_DIR%/libraries/GSM/src \ 21 | %ARDUINO_DIR%/libraries/LiquidCrystal/src \ 22 | %ARDUINO_DIR%/libraries/Robot_Control/src \ 23 | %ARDUINO_DIR%/libraries/RobotIRremote/src \ 24 | %ARDUINO_DIR%/libraries/Robot_Motor/src \ 25 | %ARDUINO_DIR%/libraries/SD/src \ 26 | %ARDUINO_DIR%/libraries/Servo/src \ 27 | %ARDUINO_DIR%/libraries/SpacebrewYun/src \ 28 | %ARDUINO_DIR%/libraries/Stepper/src \ 29 | %ARDUINO_DIR%/libraries/Temboo/src \ 30 | %ARDUINO_DIR%/libraries/TFT/src \ 31 | %ARDUINO_DIR%/libraries/WiFi/src \ 32 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/EEPROM \ 33 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/SoftwareSerial \ 34 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/SPI \ 35 | %ARDUINO_DIR%/hardware/arduino/avr/libraries/Wire 36 | 37 | 38 | -------------------------------------------------------------------------------- /arduino_cpp_style/Makefile: -------------------------------------------------------------------------------- 1 | # Parameters for compiling 2 | ARDUINO_DIR = %ARDUINO_DIR% 3 | AVR_TOOLS_DIR = %AVR_TOOLS_DIR% 4 | TARGET = output 5 | ARDUINO_LIBS = %ARDUINO_LIBS% 6 | 7 | 8 | BOARD_TAG = %BOARD_TAG% 9 | BOARD_SUB = %BOARD_MCU% 10 | # If you found problem on compile, you can uncomment and change MCU and F_CPU 11 | # To know what MCU you can use check board.txt on end of this file 12 | #MCU # %BOARD_MCU% 13 | #F_CPU = %BOARD_F% 14 | MONITOR_PORT = %ARDUINO_PORT% 15 | 16 | # Avrdude code for programming 17 | AVRDUDE = $(ARDUINO_DIR)/hardware/tools/avr/bin/avrdude 18 | AVRDUDE_CONF = $(ARDUINO_DIR)/hardware/tools/avr/etc/avrdude.conf 19 | #AVRDUDE_ARD_PROGRAMMER = wiring 20 | #AVRDUDE_ARD_BAUDRATE = 115200 21 | 22 | 23 | # Arduino makefile 24 | include %ARDUINO_MAKEFILE_DIR%/Arduino.mk 25 | 26 | # Bellow you found MCU values extracted from board.txt file. Added just to reference 27 | # MCU data is the info after .menu.cpu. 28 | # Example: #atmegang.menu.cpu.atmega168.build.mcu=atmega168 => MCU = atmega168 29 | # 30 | #atmegang.build.mcu=atmegang 31 | #atmegang.menu.cpu.atmega168.build.mcu=atmega168 32 | #atmegang.menu.cpu.atmega8.build.mcu=atmega8 33 | #bt.menu.cpu.atmega328.build.mcu=atmega328p 34 | #bt.menu.cpu.atmega168.build.mcu=atmega168 35 | #diecimila.menu.cpu.atmega328.build.mcu=atmega328p 36 | #diecimila.menu.cpu.atmega168.build.mcu=atmega168 37 | #esplora.build.mcu=atmega32u4 38 | #ethernet.build.mcu=atmega328p 39 | #fio.build.mcu=atmega328p 40 | #leonardo.build.mcu=atmega32u4 41 | #lilypad.menu.cpu.atmega328.build.mcu=atmega328p 42 | #lilypad.menu.cpu.atmega168.build.mcu=atmega168 43 | #LilyPadUSB.build.mcu=atmega32u4 44 | #megaADK.build.mcu=atmega2560 45 | #mega.menu.cpu.atmega2560.build.mcu=atmega2560 46 | #mega.menu.cpu.atmega1280.build.mcu=atmega1280 47 | #megaADK.build.mcu=atmega2560 48 | #micro.build.mcu=atmega32u4 49 | #mini.menu.cpu.atmega328.build.mcu=atmega328p 50 | #mini.menu.cpu.atmega168.build.mcu=atmega168 51 | #nano.menu.cpu.atmega328.build.mcu=atmega328p 52 | #nano.menu.cpu.atmega168.build.mcu=atmega168 53 | #pro.menu.cpu.16MHzatmega328.build.mcu=atmega328p 54 | #pro.menu.cpu.8MHzatmega328.build.mcu=atmega328p 55 | #pro.menu.cpu.16MHzatmega168.build.mcu=atmega168 56 | #pro.menu.cpu.8MHzatmega168.build.mcu=atmega168 57 | #robotControl.build.mcu=atmega32u4 58 | #robotMotor.build.mcu=atmega32u4 59 | #uno.build.mcu=atmega328p 60 | #yun.build.mcu=atmega32u4 61 | -------------------------------------------------------------------------------- /arduino_sketch_style/Makefile: -------------------------------------------------------------------------------- 1 | # Parameters for compiling 2 | ARDUINO_DIR = %ARDUINO_DIR% 3 | AVR_TOOLS_DIR = %AVR_TOOLS_DIR% 4 | TARGET = output 5 | ARDUINO_LIBS = %ARDUINO_LIBS% 6 | 7 | 8 | BOARD_TAG = %BOARD_TAG% 9 | BOARD_SUB = %BOARD_MCU% 10 | # If you found problem on compile, you can uncomment and change MCU and F_CPU 11 | # To know what MCU you can use check board.txt on end of this file 12 | #MCU # %BOARD_MCU% 13 | #F_CPU = %BOARD_F% 14 | MONITOR_PORT = %ARDUINO_PORT% 15 | 16 | # Avrdude code for programming 17 | AVRDUDE = $(ARDUINO_DIR)/hardware/tools/avr/bin/avrdude 18 | AVRDUDE_CONF = $(ARDUINO_DIR)/hardware/tools/avr/etc/avrdude.conf 19 | #AVRDUDE_ARD_PROGRAMMER = wiring 20 | #AVRDUDE_ARD_BAUDRATE = 115200 21 | 22 | 23 | # Arduino makefile 24 | include %ARDUINO_MAKEFILE_DIR%/Arduino.mk 25 | 26 | # Bellow you found MCU values extracted from board.txt file. Added just to reference 27 | # MCU data is the info after .menu.cpu. 28 | # Example: #atmegang.menu.cpu.atmega168.build.mcu=atmega168 => MCU = atmega168 29 | # 30 | #atmegang.build.mcu=atmegang 31 | #atmegang.menu.cpu.atmega168.build.mcu=atmega168 32 | #atmegang.menu.cpu.atmega8.build.mcu=atmega8 33 | #bt.menu.cpu.atmega328.build.mcu=atmega328p 34 | #bt.menu.cpu.atmega168.build.mcu=atmega168 35 | #diecimila.menu.cpu.atmega328.build.mcu=atmega328p 36 | #diecimila.menu.cpu.atmega168.build.mcu=atmega168 37 | #esplora.build.mcu=atmega32u4 38 | #ethernet.build.mcu=atmega328p 39 | #fio.build.mcu=atmega328p 40 | #leonardo.build.mcu=atmega32u4 41 | #lilypad.menu.cpu.atmega328.build.mcu=atmega328p 42 | #lilypad.menu.cpu.atmega168.build.mcu=atmega168 43 | #LilyPadUSB.build.mcu=atmega32u4 44 | #megaADK.build.mcu=atmega2560 45 | #mega.menu.cpu.atmega2560.build.mcu=atmega2560 46 | #mega.menu.cpu.atmega1280.build.mcu=atmega1280 47 | #megaADK.build.mcu=atmega2560 48 | #micro.build.mcu=atmega32u4 49 | #mini.menu.cpu.atmega328.build.mcu=atmega328p 50 | #mini.menu.cpu.atmega168.build.mcu=atmega168 51 | #nano.menu.cpu.atmega328.build.mcu=atmega328p 52 | #nano.menu.cpu.atmega168.build.mcu=atmega168 53 | #pro.menu.cpu.16MHzatmega328.build.mcu=atmega328p 54 | #pro.menu.cpu.8MHzatmega328.build.mcu=atmega328p 55 | #pro.menu.cpu.16MHzatmega168.build.mcu=atmega168 56 | #pro.menu.cpu.8MHzatmega168.build.mcu=atmega168 57 | #robotControl.build.mcu=atmega32u4 58 | #robotMotor.build.mcu=atmega32u4 59 | #uno.build.mcu=atmega328p 60 | #yun.build.mcu=atmega32u4 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Qt Creator Arduino configuration 2 | 3 | This repository creates a template that allows you to configure Qt Creator as your Arduino's IDE. 4 | 5 | Portuguese spearks / Pessoal de lingua portuguesa: Postei uma série de videos no youtube de como configurar todo seu ambiente de desenvolvimento, confira em https://www.youtube.com/user/cleitonsouza01/playlists 6 | 7 | 8 | ## About Qt Creator 9 | Qt Creator is a cross-platform IDE where you can develope on Windows, Linux or Mac. Qt Creator is advanced IDE that provides a lot of smart things to help you to develop more quickly and easily. Some main features of Qt Creator: 10 | - Rapid code navigation tools 11 | - Syntax highlighting and code completion 12 | - Static code checking and style hints as you type 13 | - Support for source code refactoring 14 | - Context sensitive help 15 | - Code folding 16 | - Parenthesis matching and parenthesis selection modes 17 | 18 | With all these and many more features, Qt Creator can be lightweight, and for me, is one of the best IDE's available. 19 | 20 | 21 | ## About my template 22 | This repository provides a template that allows you to configure Qt Creator as your Arduino's IDE. 23 | 24 | What you need to use (*pre-requisites*): 25 | * PC running Linux 26 | - Windows and Mac can use it too, but some small changes are necessary 27 | - In the future I will provide files ready to use in all environments 28 | * Arduino IDE 1.6.3 29 | + http://www.arduino.cc/en/Main/Software 30 | * Arduino-Makefile 1.3.4 31 | + https://github.com/sudar/Arduino-Makefile 32 | * Qt Creator 3.3.1 33 | + http://www.qt.io/download-open-source 34 | * GTKTerm version 0.99 35 | + Can be any other serial monitor, but I chose it because is very lightweight 36 | 37 | ## Some screenshots 38 | ![Choose template image](https://github.com/cleitonsouza01/qt-creator-arduino/blob/master/screenshot/img_choose_temp.png?raw=false "Screen where you can choose template") 39 | 40 | ![Choose Parameters image](https://github.com/cleitonsouza01/qt-creator-arduino/blob/master/screenshot/img_choose_param.png?raw=false "Screen where you can choose Parameters") 41 | 42 | ![Choose Board image](https://github.com/cleitonsouza01/qt-creator-arduino/blob/master/screenshot/img_choose_board.png?raw=false "Screen where you can choose Board") 43 | 44 | ![Programing C++ Style](https://github.com/cleitonsouza01/qt-creator-arduino/blob/master/screenshot/img_example_cpp_style.png?raw=false "Programing C++ Style") 45 | 46 | ![Programing in Skecth style](https://github.com/cleitonsouza01/qt-creator-arduino/blob/master/screenshot/img_example_sketch_style.png?raw=false "Programing in Skecth style") 47 | 48 | 49 | ## Boards supported and tested 50 | Theoretically this template can support all boards that Arduino-MakeFile support, it means: 51 | * Supports all official AVR-based Arduino boards 52 | * Supports chipKIT 53 | * Supports Teensy 3.x (via Teensyduino) 54 | 55 | I already tested successfully with: 56 | - Arduino Mega 2560 57 | - Arduino Pro 58 | - Arduino Uno 59 | 60 | If you have tested any other boards, please tell me about your experience! 61 | 62 | ## How install 63 | In this repository you will find two folders: 64 | * arduino_cpp_style 65 | + This folder contains a C++ style Arduino template 66 | * arduino_sketch_style 67 | + This folder contains a Sketch style Arduino template 68 | + (the same style used in the official Arduino IDE) 69 | 70 | 71 | INSTALLATION INSTRUCTIONS 72 | ------------------------- 73 | 74 | 1) Close Qt Creator 75 | 76 | 2) Execute the following *commands* in Terminal: 77 | 78 | ``` 79 | cd ~/Qt5.4.1/Tools/QtCreator/share/qtcreator/templates/wizards/ 80 | git clone https://github.com/cleitonsouza01/qt-creator-arduino 81 | ``` 82 | You should see something similar to this: 83 | 84 | ``` 85 | Cloning into 'qt-creator-arduino'... 86 | remote: Counting objects: 30, done. 87 | remote: Compressing objects: 100% (27/27), done. 88 | remote: Total 30 (delta 9), reused 18 (delta 2), pack-reused 0 89 | Unpacking objects: 100% (30/30), done. 90 | Checking connectivity... done. 91 | ``` 92 | **Note:** 93 | * You may need to change the first command to match your Qt installation. 94 | * My Qt installation was ~/Qt5.4.1/Tools/QtCreator/share/qtcreator/templates/wizards/ 95 | * A tip is to type in ~/Qt then hit [TAB] to get the shell to auto-complete stuff for you. 96 | 97 | 3) Open Qt Creator 98 | 99 | 4) Click on: 100 | File > New File or Project 101 | Select Arduino project 102 | 103 | And then have fun! 104 | 105 | 106 | ## Author 107 | * Cleiton Souza (cleiton@tutamail.com) 108 | * Jason Jorgenson (jjorgenson@gmail.com) 109 | 110 | ## Similar works 111 | I found one Qt template created by Philippe Lucidarme (http://5lair.free.fr) but it is based on an old version of Qt Creator / Arduino-Mk version, and it seems that Philippe no longer updates this template. 112 | -------------------------------------------------------------------------------- /arduino_cpp_style/wizard.xml: -------------------------------------------------------------------------------- 1 | 2 | 40 | 43 | arduino_logo.png 44 | Creates an Arduino project based on the makefile from the arduino-mk package. 45 | Arduino Project using C++ style; 46 | AVR 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | Project Parameters 55 | 56 | 57 | 58 | 59 | 60 | Arduino Uno 61 | 62 | 63 | Arduino NG or older 64 | 65 | 66 | Arduino BT 67 | 68 | 69 | Arduino Duemilanove or Diecimila 70 | 71 | 72 | Arduino Esplora 73 | 74 | 75 | Arduino Ethernet 76 | 77 | 78 | Arduino Fio 79 | 80 | 81 | Arduino Leonardo 82 | 83 | 84 | LilyPad Arduino 85 | 86 | 87 | LilyPad Arduino USB 88 | 89 | 90 | Arduino Mega ADK 91 | 92 | 93 | Arduino Mega or Mega 2560 94 | 95 | 96 | Arduino Micro 97 | 98 | 99 | Arduino Mini 100 | 101 | 102 | Arduino Nano 103 | 104 | 105 | Arduino Pro or Pro Mini 106 | 107 | 108 | Arduino Robot Control 109 | 110 | 111 | Arduino Robot Motor 112 | 113 | 114 | Arduino Yun 115 | 116 | 117 | 118 | Board: 119 | 120 | 121 | 122 | 123 | 124 | (just pro) 16MHz atmega328 125 | 126 | 127 | (just pro) 8MHz atmega328 128 | 129 | 130 | atmega328p 131 | 132 | 133 | atmega1280 134 | 135 | 136 | (just pro) 16MHz atmega168 137 | 138 | 139 | (just pro) 8MHz atmega328 140 | 141 | 142 | atmega168 143 | 144 | 145 | atmega2560 146 | 147 | 148 | atmega32u4 149 | 150 | 151 | atmega8 152 | 153 | 154 | atmegang 155 | 156 | 157 | 158 | Microcontroller: 159 | 160 | 161 | 163 | Frequency: 164 | 165 | 166 | 168 | Libraries: 169 | 170 | 171 | 173 | Arduino Path: 174 | 175 | 176 | 178 | Makefile Path: 179 | 180 | 181 | 183 | AVR Tools Path: 184 | 185 | 186 | 188 | Serial port: 189 | 190 | 191 | 193 | Serial port baud rate: 194 | 195 | 196 | 198 | Serial monitor program: 199 | 200 | 201 | 203 | Serial monitor program port argument: 204 | 205 | 206 | 208 | Serial monitor program baudrate argument: 209 | 210 | 211 | 212 | -------------------------------------------------------------------------------- /arduino_sketch_style/wizard.xml: -------------------------------------------------------------------------------- 1 | 2 | 40 | 43 | arduino_logo.png 44 | Creates an Arduino project based on the makefile from the arduino-mk package. 45 | Arduino Project using sketch; 46 | AVR 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | Project Parameters 56 | 57 | 58 | 59 | 60 | 61 | Arduino Uno 62 | 63 | 64 | Arduino NG or older 65 | 66 | 67 | Arduino BT 68 | 69 | 70 | Arduino Duemilanove or Diecimila 71 | 72 | 73 | Arduino Esplora 74 | 75 | 76 | Arduino Ethernet 77 | 78 | 79 | Arduino Fio 80 | 81 | 82 | Arduino Leonardo 83 | 84 | 85 | LilyPad Arduino 86 | 87 | 88 | LilyPad Arduino USB 89 | 90 | 91 | Arduino Mega ADK 92 | 93 | 94 | Arduino Mega or Mega 2560 95 | 96 | 97 | Arduino Micro 98 | 99 | 100 | Arduino Mini 101 | 102 | 103 | Arduino Nano 104 | 105 | 106 | Arduino Pro or Pro Mini 107 | 108 | 109 | Arduino Robot Control 110 | 111 | 112 | Arduino Robot Motor 113 | 114 | 115 | Arduino Yun 116 | 117 | 118 | 119 | Board: 120 | 121 | 122 | 123 | 124 | 125 | (just pro) 16MHz atmega328 126 | 127 | 128 | (just pro) 8MHz atmega328 129 | 130 | 131 | atmega328p 132 | 133 | 134 | atmega1280 135 | 136 | 137 | (just pro) 16MHz atmega168 138 | 139 | 140 | (just pro) 8MHz atmega168 141 | 142 | 143 | atmega168 144 | 145 | 146 | atmega2560 147 | 148 | 149 | atmega32u4 150 | 151 | 152 | atmega8 153 | 154 | 155 | atmegang 156 | 157 | 158 | 159 | Microcontroller: 160 | 161 | 162 | 164 | Frequency: 165 | 166 | 167 | 169 | Libraries: 170 | 171 | 172 | 174 | Arduino Path: 175 | 176 | 177 | 179 | Makefile Path: 180 | 181 | 182 | 184 | AVR Tools Path: 185 | 186 | 187 | 189 | Serial port: 190 | 191 | 192 | 194 | Serial port baud rate: 195 | 196 | 197 | 199 | Serial monitor program: 200 | 201 | 202 | 204 | Serial monitor program port argument: 205 | 206 | 207 | 209 | Serial monitor program baudrate argument: 210 | 211 | 212 | 213 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /arduino_cpp_style/project.pro.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | EnvironmentId 7 | {e2993adf-256e-4cdb-8164-159b33c43ea5} 8 | 9 | 10 | ProjectExplorer.Project.ActiveTarget 11 | 0 12 | 13 | 14 | ProjectExplorer.Project.EditorSettings 15 | 16 | true 17 | false 18 | true 19 | 20 | Cpp 21 | 22 | CppGlobal 23 | 24 | 25 | 26 | QmlJS 27 | 28 | QmlJSGlobal 29 | 30 | 31 | 2 32 | UTF-8 33 | false 34 | 4 35 | false 36 | 80 37 | true 38 | true 39 | 1 40 | true 41 | false 42 | 0 43 | true 44 | true 45 | 0 46 | 8 47 | true 48 | 1 49 | true 50 | true 51 | true 52 | false 53 | 54 | 55 | 56 | ProjectExplorer.Project.PluginSettings 57 | 58 | 59 | 60 | 61 | 62 | ProjectExplorer.Project.Target.0 63 | 64 | Desktop Qt 5.8.0 GCC 64bit 65 | Desktop Qt 5.8.0 GCC 64bit 66 | qt.58.gcc_64_kit 67 | 0 68 | 0 69 | 1 70 | 71 | ./ 72 | 73 | 74 | true 75 | Build 76 | 77 | Qt4ProjectManager.MakeStep 78 | 79 | -w 80 | -r 81 | 82 | false 83 | 84 | 85 | 86 | 1 87 | Build 88 | 89 | ProjectExplorer.BuildSteps.Build 90 | 91 | 92 | 93 | true 94 | Build 95 | 96 | Qt4ProjectManager.MakeStep 97 | 98 | -w 99 | -r 100 | 101 | true 102 | clean 103 | 104 | 105 | 1 106 | Clean 107 | 108 | ProjectExplorer.BuildSteps.Clean 109 | 110 | 2 111 | false 112 | 113 | Debug 114 | 115 | Qt4ProjectManager.Qt4BuildConfiguration 116 | 2 117 | true 118 | 119 | 120 | ./ 121 | 122 | 123 | true 124 | qmake 125 | 126 | QtProjectManager.QMakeBuildStep 127 | false 128 | 129 | false 130 | false 131 | false 132 | 133 | 134 | true 135 | Build 136 | 137 | Qt4ProjectManager.MakeStep 138 | 139 | -w 140 | -r 141 | 142 | false 143 | 144 | 145 | 146 | 2 147 | Build 148 | 149 | ProjectExplorer.BuildSteps.Build 150 | 151 | 152 | 153 | true 154 | Build 155 | 156 | Qt4ProjectManager.MakeStep 157 | 158 | -w 159 | -r 160 | 161 | true 162 | clean 163 | 164 | 165 | 1 166 | Clean 167 | 168 | ProjectExplorer.BuildSteps.Clean 169 | 170 | 2 171 | false 172 | 173 | Release 174 | 175 | Qt4ProjectManager.Qt4BuildConfiguration 176 | 0 177 | true 178 | 179 | 180 | ./ 181 | 182 | 183 | true 184 | qmake 185 | 186 | QtProjectManager.QMakeBuildStep 187 | true 188 | 189 | false 190 | true 191 | false 192 | 193 | 194 | true 195 | Build 196 | 197 | Qt4ProjectManager.MakeStep 198 | 199 | -w 200 | -r 201 | 202 | false 203 | 204 | 205 | 206 | 2 207 | Build 208 | 209 | ProjectExplorer.BuildSteps.Build 210 | 211 | 212 | 213 | true 214 | Build 215 | 216 | Qt4ProjectManager.MakeStep 217 | 218 | -w 219 | -r 220 | 221 | true 222 | clean 223 | 224 | 225 | 1 226 | Clean 227 | 228 | ProjectExplorer.BuildSteps.Clean 229 | 230 | 2 231 | false 232 | 233 | Profile 234 | 235 | Qt4ProjectManager.Qt4BuildConfiguration 236 | 0 237 | true 238 | 239 | 3 240 | 241 | 242 | 243 | true 244 | upload 245 | make 246 | %{buildDir} 247 | Special 248 | 249 | ProjectExplorer.ProcessStep 250 | 251 | 1 252 | Install 253 | 254 | ProjectExplorer.BuildSteps.Deploy 255 | 256 | 1 257 | Local Install 258 | 259 | ProjectExplorer.DefaultDeployConfiguration 260 | 261 | 1 262 | 263 | 264 | false 265 | false 266 | 1000 267 | 268 | true 269 | 270 | false 271 | false 272 | false 273 | false 274 | true 275 | 0.01 276 | 10 277 | true 278 | 1 279 | 25 280 | 281 | 1 282 | true 283 | false 284 | true 285 | valgrind 286 | 287 | 0 288 | 1 289 | 2 290 | 3 291 | 4 292 | 5 293 | 6 294 | 7 295 | 8 296 | 9 297 | 10 298 | 11 299 | 12 300 | 13 301 | 14 302 | 303 | 2 304 | 305 | untitled 306 | 307 | Qt4ProjectManager.Qt4RunConfiguration:./ 308 | true 309 | 310 | untitled.pro 311 | false 312 | 313 | ./ 314 | 3768 315 | false 316 | true 317 | false 318 | false 319 | true 320 | 321 | 322 | false 323 | false 324 | 1000 325 | 326 | true 327 | 328 | false 329 | false 330 | false 331 | false 332 | true 333 | 0.01 334 | 10 335 | true 336 | 1 337 | 25 338 | 339 | 1 340 | true 341 | false 342 | true 343 | valgrind 344 | 345 | 0 346 | 1 347 | 2 348 | 3 349 | 4 350 | 5 351 | 6 352 | 7 353 | 8 354 | 9 355 | 10 356 | 11 357 | 12 358 | 13 359 | 14 360 | 361 | 2 362 | 363 | %SERIAL_MONITOR_PROGRAM_ARG_PORT% %ARDUINO_PORT% %SERIAL_MONITOR_PROGRAM_ARG_SPEED% %ARDUINO_PORT_SPEED% 364 | %SERIAL_MONITOR_PROGRAM% 365 | false 366 | %{buildDir} 367 | Run %SERIAL_MONITOR_PROGRAM% 368 | 369 | ProjectExplorer.CustomExecutableRunConfiguration 370 | 3768 371 | false 372 | true 373 | false 374 | false 375 | true 376 | 377 | 2 378 | 379 | 380 | 381 | ProjectExplorer.Project.TargetCount 382 | 1 383 | 384 | 385 | ProjectExplorer.Project.Updater.FileVersion 386 | 18 387 | 388 | 389 | Version 390 | 18 391 | 392 | -------------------------------------------------------------------------------- /arduino_sketch_style/project.pro.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | EnvironmentId 7 | {e2993adf-256e-4cdb-8164-159b33c43ea5} 8 | 9 | 10 | ProjectExplorer.Project.ActiveTarget 11 | 0 12 | 13 | 14 | ProjectExplorer.Project.EditorSettings 15 | 16 | true 17 | false 18 | true 19 | 20 | Cpp 21 | 22 | CppGlobal 23 | 24 | 25 | 26 | QmlJS 27 | 28 | QmlJSGlobal 29 | 30 | 31 | 2 32 | UTF-8 33 | false 34 | 4 35 | false 36 | 80 37 | true 38 | true 39 | 1 40 | true 41 | false 42 | 0 43 | true 44 | true 45 | 0 46 | 8 47 | true 48 | 1 49 | true 50 | true 51 | true 52 | false 53 | 54 | 55 | 56 | ProjectExplorer.Project.PluginSettings 57 | 58 | 59 | 60 | 61 | 62 | ProjectExplorer.Project.Target.0 63 | 64 | Desktop Qt 5.8.0 GCC 64bit 65 | Desktop Qt 5.8.0 GCC 64bit 66 | qt.58.gcc_64_kit 67 | 0 68 | 0 69 | 1 70 | 71 | ./ 72 | 73 | 74 | true 75 | Build 76 | 77 | Qt4ProjectManager.MakeStep 78 | 79 | -w 80 | -r 81 | 82 | false 83 | 84 | 85 | 86 | 1 87 | Build 88 | 89 | ProjectExplorer.BuildSteps.Build 90 | 91 | 92 | 93 | true 94 | Build 95 | 96 | Qt4ProjectManager.MakeStep 97 | 98 | -w 99 | -r 100 | 101 | true 102 | clean 103 | 104 | 105 | 1 106 | Clean 107 | 108 | ProjectExplorer.BuildSteps.Clean 109 | 110 | 2 111 | false 112 | 113 | Debug 114 | 115 | Qt4ProjectManager.Qt4BuildConfiguration 116 | 2 117 | true 118 | 119 | 120 | ./ 121 | 122 | 123 | true 124 | qmake 125 | 126 | QtProjectManager.QMakeBuildStep 127 | false 128 | 129 | false 130 | false 131 | false 132 | 133 | 134 | true 135 | Build 136 | 137 | Qt4ProjectManager.MakeStep 138 | 139 | -w 140 | -r 141 | 142 | false 143 | 144 | 145 | 146 | 2 147 | Build 148 | 149 | ProjectExplorer.BuildSteps.Build 150 | 151 | 152 | 153 | true 154 | Build 155 | 156 | Qt4ProjectManager.MakeStep 157 | 158 | -w 159 | -r 160 | 161 | true 162 | clean 163 | 164 | 165 | 1 166 | Clean 167 | 168 | ProjectExplorer.BuildSteps.Clean 169 | 170 | 2 171 | false 172 | 173 | Release 174 | 175 | Qt4ProjectManager.Qt4BuildConfiguration 176 | 0 177 | true 178 | 179 | 180 | ./ 181 | 182 | 183 | true 184 | qmake 185 | 186 | QtProjectManager.QMakeBuildStep 187 | true 188 | 189 | false 190 | true 191 | false 192 | 193 | 194 | true 195 | Build 196 | 197 | Qt4ProjectManager.MakeStep 198 | 199 | -w 200 | -r 201 | 202 | false 203 | 204 | 205 | 206 | 2 207 | Build 208 | 209 | ProjectExplorer.BuildSteps.Build 210 | 211 | 212 | 213 | true 214 | Build 215 | 216 | Qt4ProjectManager.MakeStep 217 | 218 | -w 219 | -r 220 | 221 | true 222 | clean 223 | 224 | 225 | 1 226 | Clean 227 | 228 | ProjectExplorer.BuildSteps.Clean 229 | 230 | 2 231 | false 232 | 233 | Profile 234 | 235 | Qt4ProjectManager.Qt4BuildConfiguration 236 | 0 237 | true 238 | 239 | 3 240 | 241 | 242 | 243 | true 244 | upload 245 | make 246 | %{buildDir} 247 | Special 248 | 249 | ProjectExplorer.ProcessStep 250 | 251 | 1 252 | Install 253 | 254 | ProjectExplorer.BuildSteps.Deploy 255 | 256 | 1 257 | Local Install 258 | 259 | ProjectExplorer.DefaultDeployConfiguration 260 | 261 | 1 262 | 263 | 264 | false 265 | false 266 | 1000 267 | 268 | true 269 | 270 | false 271 | false 272 | false 273 | false 274 | true 275 | 0.01 276 | 10 277 | true 278 | 1 279 | 25 280 | 281 | 1 282 | true 283 | false 284 | true 285 | valgrind 286 | 287 | 0 288 | 1 289 | 2 290 | 3 291 | 4 292 | 5 293 | 6 294 | 7 295 | 8 296 | 9 297 | 10 298 | 11 299 | 12 300 | 13 301 | 14 302 | 303 | 2 304 | 305 | untitled 306 | 307 | Qt4ProjectManager.Qt4RunConfiguration:./ 308 | true 309 | 310 | untitled.pro 311 | false 312 | 313 | ./ 314 | 3768 315 | false 316 | true 317 | false 318 | false 319 | true 320 | 321 | 322 | false 323 | false 324 | 1000 325 | 326 | true 327 | 328 | false 329 | false 330 | false 331 | false 332 | true 333 | 0.01 334 | 10 335 | true 336 | 1 337 | 25 338 | 339 | 1 340 | true 341 | false 342 | true 343 | valgrind 344 | 345 | 0 346 | 1 347 | 2 348 | 3 349 | 4 350 | 5 351 | 6 352 | 7 353 | 8 354 | 9 355 | 10 356 | 11 357 | 12 358 | 13 359 | 14 360 | 361 | 2 362 | 363 | %SERIAL_MONITOR_PROGRAM_ARG_PORT% %ARDUINO_PORT% %SERIAL_MONITOR_PROGRAM_ARG_SPEED% %ARDUINO_PORT_SPEED% 364 | %SERIAL_MONITOR_PROGRAM% 365 | false 366 | %{buildDir} 367 | Run %SERIAL_MONITOR_PROGRAM% 368 | 369 | ProjectExplorer.CustomExecutableRunConfiguration 370 | 3768 371 | false 372 | true 373 | false 374 | false 375 | true 376 | 377 | 2 378 | 379 | 380 | 381 | ProjectExplorer.Project.TargetCount 382 | 1 383 | 384 | 385 | ProjectExplorer.Project.Updater.FileVersion 386 | 18 387 | 388 | 389 | Version 390 | 18 391 | 392 | --------------------------------------------------------------------------------