Skip to content

This library works with addressable LED displays. It is a part of Pixel solar car project.

Notifications You must be signed in to change notification settings

starfactorypixel/PixelMatrixLEDLibrary

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dependencies

ATTENTION! FatFs module required to use this library!

Using in your project

In platformio.ini add library to the lib_deps:

lib_deps = 
	https://github.com/starfactorypixel/PixelMatrixLEDLibrary

If you need particular branch or tag, use this syntax:

lib_deps = 
	https://github.com/username/library_name#branch_name
	https://github.com/username/library_name#v2.0

Update library in you project

Two ways:

  1. Run command in the terminal
  2. Create task and run it

Run command in the terminal

Open terminal in the project's folder and run this command: pio lib update

Create task and run it

Add the following task "Update Libraries" to your project and run it with ctrl+alt+PTasks: Run TaskUpdate LibrariesContinue without scanning the task output.
Task code (place it in the .vscode\tasks.json):

{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "PlatformIO",
			"task": "Build",
			"problemMatcher": [
				"$platformio"
			],
			"group": "build",
			"label": "PlatformIO: Build"
		},
		{
			"type": "shell",
			"label": "Update Libraries",
			"command": "pio lib update",
			"presentation": {
				"echo": true,
				"reveal": "always",
				"focus": false,
				"panel": "shared",
				"showReuseMessage": true,
				"clear": false
			}
		}
	]
}

About

This library works with addressable LED displays. It is a part of Pixel solar car project.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages