Skip to content

Commit

Permalink
Merge pull request #14 from akkoyun/03.02.14
Browse files Browse the repository at this point in the history
03.02.14 - Initial update
  • Loading branch information
akkoyun authored Feb 20, 2022
2 parents 4a2507c + b6e13d9 commit f946ddc
Show file tree
Hide file tree
Showing 8 changed files with 301 additions and 253 deletions.
28 changes: 12 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
language: c
sudo: false
os: linux
dist: xenial
cache:
directories:
- ~/arduino_ide
- ~/.arduino15/packages/
git:
depth: false
quiet: true
addons:
apt:
sources:
- llvm-toolchain-trusty-5.0
- key_url: 'http://apt.llvm.org/llvm-snapshot.gpg.key'
packages:
- python3-pip
- python3-wheel
env:
global:
- PRETTYNAME="Environment Library"

# You can uncomment this to explicitly choose an (old) version of the Arduino IDE
#- ARDUINO_IDE_VERSION="1.8.10"
before_install:
- source <(curl -SLs https://raw.githubusercontent.com/akkoyun/Environment/master/install.sh)

- source <(curl -SLs https://raw.githubusercontent.com/akkoyun/Statistical/main/install.sh)
install:
- arduino --install-library "Statistical"
# Note that every library should be installed in a seperate command
- arduino --install-library "I2C_Functions"

- arduino --install-library "Statistical"
script:
- build_main_platforms
- build_main_platforms
notifications:
email:
on_success: change
on_failure: change
93 changes: 39 additions & 54 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -1,56 +1,41 @@
{
"configurations": [
{
"name": "PlatformIO",
"includePath": [
"/Users/gunceakkoyun_macmini/Documents/Arduino/**",
"/users/gunceakkoyun_macmini/documents/arduino/libraries/**",
"/users/gunceakkoyun_macmini/documents/arduino/hardware/**",
"/Applications/Arduino.app/**",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/cores/arduino",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/variants/mega",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/EEPROM/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/HID/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/SPI/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/SoftwareSerial/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/Wire/src",
""
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"path": [
"/Users/gunceakkoyun_macmini/Documents/Arduino/**",
"/users/gunceakkoyun_macmini/documents/arduino/libraries/**",
"/users/gunceakkoyun_macmini/documents/arduino/hardware/**",
"/Applications/Arduino.app/**",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/cores/arduino",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/variants/mega",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/EEPROM/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/HID/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/SPI/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/SoftwareSerial/src",
"/Users/gunceakkoyun_macmini/.platformio/packages/framework-arduino-avr/libraries/Wire/src",
""
]
},
"defines": [
"PLATFORMIO=50203",
"ARDUINO_AVR_MEGA2560",
"F_CPU=7372800L",
"ARDUINO_ARCH_AVR",
"ARDUINO=10808",
"__AVR_ATmega2560__",
""
],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++98",
"intelliSenseMode": "macos-clang-arm64"
}
],

"version": 4
"configurations": [
{
"name": "PlatformIO",
"includePath": [
"~/Documents/Arduino/**",
"~/Documents/Arduino/Libraries/**",
"~/Documents/Arduino/Hardware/**",
"~/Applications/Arduino.app/**",
"~/Documents/Arduino/hardware/MegaCore-2.1.3/avr/cores/**",
"~/Documents/Arduino/hardware/MegaCore-2.1.3/avr/libraries/**"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"path": [
"~/Documents/Arduino/**",
"~/Documents/Arduino/Libraries/**",
"~/Documents/Arduino/Hardware/**",
"~/Applications/Arduino.app/**",
"~/Documents/Arduino/hardware/MegaCore-2.1.3/avr/cores/**",
"~/Documents/Arduino/hardware/MegaCore-2.1.3/avr/libraries/**"
]
},
"defines": [
"PLATFORMIO=50203",
"ARDUINO_AVR_MEGA2560",
"F_CPU=7372800L",
"ARDUINO_ARCH_AVR",
"ARDUINO=10808",
"__AVR_ATmega2560__"
],
"cStandard": "c11",
"cppStandard": "c++11",
"compilerPath": "~/.platformio/packages/toolchain-atmelavr/bin/avr-gcc",
"compilerArgs": [
"-mmcu=atmega2560"
]
}
],
"version": 4
}
Loading

0 comments on commit f946ddc

Please sign in to comment.