35 lines
		
	
	
		
			739 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			739 B
		
	
	
	
		
			INI
		
	
	
	
	
	
| ; PlatformIO Project Configuration File
 | |
| ;
 | |
| ;   Build options: build flags, source filter
 | |
| ;   Upload options: custom upload port, speed and extra flags
 | |
| ;   Library options: dependencies, extra library storages
 | |
| ;   Advanced options: extra scripting
 | |
| ;
 | |
| ; Please visit documentation for the other options and examples
 | |
| ; https://docs.platformio.org/page/projectconf.html
 | |
| 
 | |
| [platformio]
 | |
| default_envs = at32u4d
 | |
| 
 | |
| [env]
 | |
| build_flags = -Wall
 | |
| lib_deps = 
 | |
|     Adafruit NeoPixel
 | |
|     Encoder
 | |
| 
 | |
| [env:at32u4]
 | |
| platform = atmelavr
 | |
| board = sparkfun_promicro16
 | |
| framework = arduino
 | |
| 
 | |
| [env:at32u4d]
 | |
| build_type = debug
 | |
| platform = atmelavr
 | |
| board = sparkfun_promicro16
 | |
| framework = arduino
 | |
| 
 | |
| [env:uno]
 | |
| build_type = debug
 | |
| platform = atmelavr
 | |
| board = uno
 | |
| framework = arduino |