Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Readme.md

arduino-fqbn

  • Parse arduino fqbn:

     fqbn.parse('arduino:avr:mega:cpu=atmega1260,mem=1024')
     {
     	packager: 'arduino',
     	architecture: 'avr',
     	id: 'mega',
     	config: {
     		cpu: 'atmega1260',
     		mem: '1024'
     	}
     }
  • And viceversa:

     fqbn.stringify('arduino','avr','mega', {
     		cpu: 'atmega1260',
     		mem: '1024'
     	})
     'arduino:avr:mega:cpu=atmega1260,mem=1024'

How to deploy on npm

  1. Change the version in package.json
  2. Login with npm login
  3. Publish with npm publish

About

A library to parse and stringify arduino fqbn

Resources

License

Releases

No releases published

Sponsor this project

  •  
Learn more about GitHub Sponsors

Packages

No packages published
You can’t perform that action at this time.