LilyPad Protosnap Plus - can it work with Online IDE?

We can't seem to find the LilyPad Protosnap Plus on the list of Boards with the Arduino online IDE, nor can we find the library associated with the Protosnap Plus.

Are the two compatible yet?
Thanks much,
Rob

(deleted)

SparkFun let me know that it is up to Arduino to handle the compatibility with the ProtoSnap Plus board.

SparkFun's tutorials on the LilyPad ProtoSnap Plus do not discuss the Arduino online IDE. They discuss the desktop IDE.

(deleted)

I would imagine it's only a matter of time before Arduino integrates the LilyPad ProtoSnap Plus into its online IDE offerings.
As it is not yet being offered, are there any plans to integrate or dates of release available?

It actually is possible to use that board with the Arduino Web Editor if you select the "LilyPad Arduino USB" board. The problem is that SparkFun decided to make a completely different pin mapping for the LilyPad ProtoSnap Plus. That could be overcome by translating the pin mappings. For example, the pin marked 11 on the ProtoSnap would need to be referred to as pin 2 when using it as the LilyPad Arduino USB. You could write a library that did this translation for you, for example:

#define D11 2

but that translation won't apply to libraries so if the library documentation says "connect sensor to pin 2" you need to remember that 2 means the pin marked 11 on the ProtoSnap.

Thank you very much. That is super helpful.