Why does the Iris First gen smart plug model SPG902 not report wattage usage? I used it to monitor my well light wattage to make sure it does not have a broken filament
Moved mine closer to Hub and it now works as it should.
Any luck with this? Would be awesome to have kwh usage and cost per kwh.
joe-hennessy:
Any luck with this?
Which "this" are you referring to? There are lots of things discussed in this thread.
Edit: I see you clarified things. This is not available that I am aware of, at least not directly within a driver. I also am unaware of an app that does this, but it would be interesting if someone could come up with one.
i was using this one with smartthings.
/**
* Copyright 2015 SmartThings
*
* 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.
*
* SmartPower Outlet (CentraLite)
*
* Author: SmartThings
* Date: 2015-08-23
*/
metadata {
// Automatically generated. Make future change here.
definition (name: "Iris Smart Plug", namespace: "blebson", author: "SmartThings") {
This file has been truncated. show original
It is theoretically possible to port that over. I don't have the ability to do this, so I don't know if this particular app will work once ported.
Here are some guidelines how to port.
I thought I'd jot down a few of the driver porting changes I've encountered. Please add additional ones you find to this list.
Replace physicalgraph with hubitat
Replace variables beginning with data with device.data
Add to params calls that give a java error the following before headers:
requestContentType: "application/json",
Replace pause(int) with pauseExecution(long) (units are milliseconds)
include ‘asynchttp_v1’ is not supported - comment this out and replace affected code with syn…