|
|
@@ -20,10 +20,52 @@ Autor: Joerg Lehmann, nbit Informatik GmbH
|
|
|
|
|
|
|
|
|
|
|
|
Das sind die verwendeten Libraries [1]:
|
|
|
|
Das sind die verwendeten Libraries [1]:
|
|
|
|
|
|
|
|
|
|
|
|
| URL | Commit | Commit Date |
|
|
|
|
| URL | Branch | Commit | Commit Date |
|
|
|
|
| --- | ----- | ----------- |
|
|
|
|
| --- | ------ | ----- | ----------- |
|
|
|
|
| https://github.com/HelTecAutomation/ASR650x-Arduino.git | 9856523 | Thu, 4 Feb 2021 18:02:48 +0800 |
|
|
|
|
| https://github.com/HelTecAutomation/CubeCell-Arduino.git | 58ed094 | Mon, 26 Apr 2021 09:48:49 +0800 |
|
|
|
|
| https://github.com/sparkfun/SparkFun_Qwiic_Scale_NAU7802_Arduino_Library.git | 688f255 | Fri, 3 Jan 2020 12:35:22 -0700 |
|
|
|
|
| https://github.com/sparkfun/SparkFun_Qwiic_Scale_NAU7802_Arduino_Library.git | master | 688f255 | Fri, 3 Jan 2020 12:35:22 -0700 |
|
|
|
|
| https://github.com/sparkfun/SparkFun_BME280_Arduino_Library.git | 0b5eabf | Wed, 30 Dec 2020 20:44:27 -0700 |
|
|
|
|
| https://github.com/sparkfun/SparkFun_BME280_Arduino_Library.git | master | 0b5eabf | Wed, 30 Dec 2020 20:44:27 -0700 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`
|
|
|
|
[1]: echo "| $(git remote -v |grep fetch |awk '{print $2}' |tr '\n' ' ') | $(git log --pretty=format:'%h | %cD ' -n 1) |"
|
|
|
|
[1]: echo "| $(git remote -v |grep fetch |awk '{print $2}' |tr '\n' ' ') | $(git log --pretty=format:'%h | %cD ' -n 1) |"
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Wir verwenden arduino-cli
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Installation:
|
|
|
|
|
|
|
|
`
|
|
|
|
|
|
|
|
$ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=~/bin sh
|
|
|
|
|
|
|
|
$ arduino-cli version
|
|
|
|
|
|
|
|
arduino-cli alpha Version: 0.18.1 Commit: b3cf8e19 Date: 2021-04-13T13:08:30Z
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ arduino-cli sketch new MiniBeieliNodeSketch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ arduino-cli core update-index
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ arduino-cli board listall
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$ arduino-cli core install CubeCell:CubeCell
|
|
|
|
|
|
|
|
$ arduino-cli core list
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Compile:
|
|
|
|
|
|
|
|
$ arduino-cli compile --fqbn CubeCell:CubeCell:CubeCell-Board \
|
|
|
|
|
|
|
|
--build-property "build.band=REGION_EU868" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_CLASS=CLASS_A" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_CLASS=CLASS_A" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_DEVEUI_AUTO=0" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_NETMODE=true" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_ADR=true" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_UPLINKMODE=false" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_Net_Reserve=false" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_AT_SUPPORT=1" \
|
|
|
|
|
|
|
|
--build-property "build.RGB=0" \
|
|
|
|
|
|
|
|
--build-property "build.LORAWAN_DebugLevel=0" \
|
|
|
|
|
|
|
|
MiniBeieliNodeSketch
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Output ist in /tmp/arduino-sketch-XXXXXXXXXXXXXXXXXXXXXXXXX und kann kopiert werden:
|
|
|
|
|
|
|
|
$ mkdir ~/arduino-builds-saved/20210423/
|
|
|
|
|
|
|
|
$ cp /tmp/arduino-sketch-0870BAA82DFEB3C4E076C8FBBDEB25B4/CubeCell_Board_REGION_EU868_RGB_0.cyacd ~/arduino-builds-saved/20210423/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Upload:
|
|
|
|
|
|
|
|
/home/joerg/Arduino/hardware/CubeCell/CubeCell/tools/CubeCellflash/CubeCellflash -serial /dev/ttyUSB0 /home/joerg/arduino-builds-saved/20210423/CubeCell_Board_REGION_EU868_RGB_0.cyacd
|
|
|
|
|
|
|
|
`
|
|
|
|