├── .github └── workflows │ └── platformio.yml ├── .gitignore ├── Can ├── .gitignore ├── README.md ├── img1.jpg ├── platformio.ini └── src │ ├── can.cpp │ ├── can.h │ └── main.cpp ├── Dma ├── .gitignore ├── lib │ └── Longan_GD32VF_examples │ │ └── font.cpp ├── platformio.ini └── src │ └── main.cpp ├── EspLink ├── .gitignore ├── platformio.ini └── src │ └── main.cpp ├── EspLinkSock ├── .gitignore ├── platformio.ini └── src │ └── main.cpp ├── EspLinkWeb ├── .gitignore ├── html │ └── longan.html ├── platformio.ini └── src │ └── main.cpp ├── Flash ├── .gitignore ├── README.md ├── platformio.ini └── src │ └── flash.cpp ├── Freq ├── .gitignore ├── platformio.ini └── src │ └── main.cpp ├── GpioIrq ├── .gitignore ├── platformio.ini └── src │ ├── led.h │ └── main.cpp ├── I2c ├── .gitignore ├── platformio.ini └── src │ ├── i2c.cpp │ ├── i2c.h │ ├── lcd1602i2c.cpp │ ├── lcd1602i2c.h │ └── main.cpp ├── LICENSE ├── Lcd ├── .gitignore ├── lib │ └── Longan_GD32VF_examples │ │ └── font.cpp ├── platformio.ini └── src │ ├── delay.cpp │ ├── delay.h │ ├── lcd.cpp │ ├── lcd.h │ ├── main.cpp │ ├── spi.cpp │ └── spi.h ├── LcdFonts ├── .gitignore ├── platformio.ini └── src │ └── fonts.cpp ├── Led ├── .gitignore ├── platformio.ini └── src │ ├── led.h │ └── main.cpp ├── PA8 ├── .gitignore ├── platformio.ini └── src │ ├── button.h │ ├── led.h │ └── main.cpp ├── README.md ├── SdCard ├── .gitignore ├── README.md ├── img.jpg ├── lib │ └── fatfs-14 │ │ ├── diskio.c.orig │ │ ├── diskio.h │ │ ├── ff.c │ │ ├── ff.h │ │ ├── ffconf.h │ │ ├── ffconf.h.orig │ │ ├── ffsystem.c │ │ └── ffunicode.c ├── platformio.ini └── src │ ├── SdCard.cpp │ └── diskio.cpp ├── SpiDma ├── .gitignore ├── README.txt ├── platformio.ini └── src │ ├── lcd.cpp │ ├── lcd.h │ ├── main.cpp │ ├── spi.cpp │ └── spi.h ├── Usart ├── .gitignore ├── platformio.ini └── src │ ├── main.cpp │ ├── usart.cpp │ └── usart.h ├── UsartIrq ├── .gitignore ├── platformio.ini └── src │ ├── main.cpp │ ├── usart.cpp │ └── usart.h └── _CaseStl ├── README.md ├── img.jpg ├── longan-bottom.stl ├── longan-button.stl ├── longan-top.stl ├── longan.scad └── pin.svg /.github/workflows/platformio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/.github/workflows/platformio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # emacs 2 | *~ 3 | -------------------------------------------------------------------------------- /Can/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Can/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/README.md -------------------------------------------------------------------------------- /Can/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/img1.jpg -------------------------------------------------------------------------------- /Can/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/platformio.ini -------------------------------------------------------------------------------- /Can/src/can.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/src/can.cpp -------------------------------------------------------------------------------- /Can/src/can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/src/can.h -------------------------------------------------------------------------------- /Can/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Can/src/main.cpp -------------------------------------------------------------------------------- /Dma/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Dma/lib/Longan_GD32VF_examples/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Dma/lib/Longan_GD32VF_examples/font.cpp -------------------------------------------------------------------------------- /Dma/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Dma/platformio.ini -------------------------------------------------------------------------------- /Dma/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Dma/src/main.cpp -------------------------------------------------------------------------------- /EspLink/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /EspLink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLink/platformio.ini -------------------------------------------------------------------------------- /EspLink/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLink/src/main.cpp -------------------------------------------------------------------------------- /EspLinkSock/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /EspLinkSock/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLinkSock/platformio.ini -------------------------------------------------------------------------------- /EspLinkSock/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLinkSock/src/main.cpp -------------------------------------------------------------------------------- /EspLinkWeb/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /EspLinkWeb/html/longan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLinkWeb/html/longan.html -------------------------------------------------------------------------------- /EspLinkWeb/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLinkWeb/platformio.ini -------------------------------------------------------------------------------- /EspLinkWeb/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/EspLinkWeb/src/main.cpp -------------------------------------------------------------------------------- /Flash/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | 3 | # emacs 4 | *~ 5 | \#*\# 6 | -------------------------------------------------------------------------------- /Flash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Flash/README.md -------------------------------------------------------------------------------- /Flash/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Flash/platformio.ini -------------------------------------------------------------------------------- /Flash/src/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Flash/src/flash.cpp -------------------------------------------------------------------------------- /Freq/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Freq/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Freq/platformio.ini -------------------------------------------------------------------------------- /Freq/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Freq/src/main.cpp -------------------------------------------------------------------------------- /GpioIrq/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /GpioIrq/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/GpioIrq/platformio.ini -------------------------------------------------------------------------------- /GpioIrq/src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/GpioIrq/src/led.h -------------------------------------------------------------------------------- /GpioIrq/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/GpioIrq/src/main.cpp -------------------------------------------------------------------------------- /I2c/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /I2c/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/platformio.ini -------------------------------------------------------------------------------- /I2c/src/i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/src/i2c.cpp -------------------------------------------------------------------------------- /I2c/src/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/src/i2c.h -------------------------------------------------------------------------------- /I2c/src/lcd1602i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/src/lcd1602i2c.cpp -------------------------------------------------------------------------------- /I2c/src/lcd1602i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/src/lcd1602i2c.h -------------------------------------------------------------------------------- /I2c/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/I2c/src/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/LICENSE -------------------------------------------------------------------------------- /Lcd/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Lcd/lib/Longan_GD32VF_examples/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/lib/Longan_GD32VF_examples/font.cpp -------------------------------------------------------------------------------- /Lcd/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/platformio.ini -------------------------------------------------------------------------------- /Lcd/src/delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/delay.cpp -------------------------------------------------------------------------------- /Lcd/src/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/delay.h -------------------------------------------------------------------------------- /Lcd/src/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/lcd.cpp -------------------------------------------------------------------------------- /Lcd/src/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/lcd.h -------------------------------------------------------------------------------- /Lcd/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/main.cpp -------------------------------------------------------------------------------- /Lcd/src/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/spi.cpp -------------------------------------------------------------------------------- /Lcd/src/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Lcd/src/spi.h -------------------------------------------------------------------------------- /LcdFonts/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /LcdFonts/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/LcdFonts/platformio.ini -------------------------------------------------------------------------------- /LcdFonts/src/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/LcdFonts/src/fonts.cpp -------------------------------------------------------------------------------- /Led/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Led/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Led/platformio.ini -------------------------------------------------------------------------------- /Led/src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Led/src/led.h -------------------------------------------------------------------------------- /Led/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Led/src/main.cpp -------------------------------------------------------------------------------- /PA8/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /PA8/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/PA8/platformio.ini -------------------------------------------------------------------------------- /PA8/src/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/PA8/src/button.h -------------------------------------------------------------------------------- /PA8/src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/PA8/src/led.h -------------------------------------------------------------------------------- /PA8/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/PA8/src/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/README.md -------------------------------------------------------------------------------- /SdCard/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | 3 | # emacs 4 | *~ 5 | \#*\# 6 | -------------------------------------------------------------------------------- /SdCard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/README.md -------------------------------------------------------------------------------- /SdCard/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/img.jpg -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/diskio.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/diskio.c.orig -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/diskio.h -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ff.c -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ff.h -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ffconf.h -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ffconf.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ffconf.h.orig -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ffsystem.c -------------------------------------------------------------------------------- /SdCard/lib/fatfs-14/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/lib/fatfs-14/ffunicode.c -------------------------------------------------------------------------------- /SdCard/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/platformio.ini -------------------------------------------------------------------------------- /SdCard/src/SdCard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/src/SdCard.cpp -------------------------------------------------------------------------------- /SdCard/src/diskio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SdCard/src/diskio.cpp -------------------------------------------------------------------------------- /SpiDma/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /SpiDma/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/README.txt -------------------------------------------------------------------------------- /SpiDma/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/platformio.ini -------------------------------------------------------------------------------- /SpiDma/src/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/src/lcd.cpp -------------------------------------------------------------------------------- /SpiDma/src/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/src/lcd.h -------------------------------------------------------------------------------- /SpiDma/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/src/main.cpp -------------------------------------------------------------------------------- /SpiDma/src/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/src/spi.cpp -------------------------------------------------------------------------------- /SpiDma/src/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/SpiDma/src/spi.h -------------------------------------------------------------------------------- /Usart/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /Usart/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Usart/platformio.ini -------------------------------------------------------------------------------- /Usart/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Usart/src/main.cpp -------------------------------------------------------------------------------- /Usart/src/usart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Usart/src/usart.cpp -------------------------------------------------------------------------------- /Usart/src/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/Usart/src/usart.h -------------------------------------------------------------------------------- /UsartIrq/.gitignore: -------------------------------------------------------------------------------- 1 | .pio/ 2 | .vscode/ 3 | 4 | # emacs 5 | *~ 6 | -------------------------------------------------------------------------------- /UsartIrq/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/UsartIrq/platformio.ini -------------------------------------------------------------------------------- /UsartIrq/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/UsartIrq/src/main.cpp -------------------------------------------------------------------------------- /UsartIrq/src/usart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/UsartIrq/src/usart.cpp -------------------------------------------------------------------------------- /UsartIrq/src/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/UsartIrq/src/usart.h -------------------------------------------------------------------------------- /_CaseStl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/README.md -------------------------------------------------------------------------------- /_CaseStl/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/img.jpg -------------------------------------------------------------------------------- /_CaseStl/longan-bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/longan-bottom.stl -------------------------------------------------------------------------------- /_CaseStl/longan-button.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/longan-button.stl -------------------------------------------------------------------------------- /_CaseStl/longan-top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/longan-top.stl -------------------------------------------------------------------------------- /_CaseStl/longan.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/longan.scad -------------------------------------------------------------------------------- /_CaseStl/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuellerA/LonganNanoTest/HEAD/_CaseStl/pin.svg --------------------------------------------------------------------------------