Device not showing up in SharpTools auth list

I'm another ActionTiles refugee trying to migrate to SharpTools. I'm trying to add a weather tile to SharpTools using the NSW Weather app code from @jon6.

I added the NSW Weather app code to Hubitat: (NWS Weather Information Driver):

I then created a Hubitat device but the device never shows up in the auth list when I try to authorize it from SharpTools. I see the device in HE but not in the auth list:

I'm obviously missing the obvious but whatever it is, it's not obvious. Any suggestions as to where I've gone wrong are appreciated.

(obvious?) suggestion. But have you definitely checked all categories?

Thanks for the suggestion. Yes, I have. I'm flummoxed.

Your device driver needs at least one attribute that SharpTools understands. Go into the groovy code and add [capability "Actuator"] like this:

metadata{
	definition( name: "the devicename: "theNamepace", author: "theAuthor") {
	    capability "Actuator"
  } 
}