Power Meter Outlet

maybe try “virtual power meter” or similar - nope.

Geez. Is smartthings losing power? Is it a metaphor, foreshadowing, what?

I think below is my crappy early solution that adapted a simulated temperature sensor for power readout on ActionTiles. I don’t think the units are watts (so it kinda sucks). No warranty and no support:

/**
  • Copyright 2014 SmartThings - ADAPTED SIMULATED-TEMP-SENSOR TO SIMULATED-POWER-METER
  • Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except
  • in compliance with the License. You may obtain a copy of the License at:
  •  http://www.apache.org/licenses/LICENSE-2.0
    
  • Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
  • on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
  • for the specific language governing permissions and limitations under the License.

*/
metadata {
// Automatically generated. Make future change here.
definition (name: “Simulated Power Meter”, namespace: “ero4444”, author: “ero4444”) {
capability “Power Meter”
capability “Energy Meter”
capability “Sensor”

	command "up"
	command "down"
    command "setPower", ["number"]
}


// UI tile definitions
tiles {
	valueTile("power", "device.power", width: 2, height: 2) {
		state("power", label:'${currentValue}', unit:"F",
			backgroundColors:[
				[value: 31, color: "#153591"],
				[value: 44, color: "#1e9cbb"],
				[value: 59, color: "#90d2a7"],
				[value: 74, color: "#44b621"],
				[value: 84, color: "#f1d801"],
				[value: 95, color: "#d04e00"],
				[value: 96, color: "#bc2323"]
			]
		)
	}
	standardTile("up", "device.power", inactiveLabel: false, decoration: "flat") {
		state "default", label:'up', action:"up"
	}        
	standardTile("down", "device.power", inactiveLabel: false, decoration: "flat") {
		state "default", label:'down', action:"down"
	}
    main "power"
	details("power","up","down")
}

}

// Parse incoming device messages to generate events
def parse(String description) {
def pair = description.split(":")
createEvent(name: pair[0].trim(), value: pair[1].trim(), unit:“W”)
}

def setLevel(value) {
sendEvent(name:“power”, value: value)
}

def up() {
def ts = device.currentState(“power”)
def value = ts ? ts.integerValue + 1 : 72
sendEvent(name:“power”, value: value)
}

def down() {
def ts = device.currentState(“power”)
def value = ts ? ts.integerValue - 1 : 72
sendEvent(name:“power”, value: value)
}

def setPower(value) {
sendEvent(name:“power”, value: value)
}

THE END