Hello,
On the topic of automatic keyword file generation, I am working on an Arduino Class Generator which automatically creates a class body (.cpp), header (.h), keywords (.txt), and example file (.ino) from an Arduino Sketch
The motivation for my project is that I found myself writing sketches to create the functionality I wanted, and then manually converting that sketch into a library for object orientated programming and sharing.
This process consists of parsing the sketch into the necessary information to make a library, like comments, variables, methods, and other included libraries
The included files demonstrate the project. Morse.ino is the original sketch, and MorseParsed is the intermediary file used to generate Morce.cpp, Morse.h, MorseExampleFile.ino, and MorseKeywords.txt
The github for the project is
hereand I made a
pull request to include it in the github IDE, the ClassGeneratorInIde picture shows what using the IDE would like like if my change is accepted
I also posted this on the forum
hereDoes anyone reading have thoughts on this project?
Thanks,
Jacob Smith