Jump to content

Welcome to Smart Home Forum by FIBARO

Dear Guest,

 

as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.

 

As a member you can:

  •     Start new topics and reply to others
  •     Follow topics and users to get email updates
  •     Get your own profile page and make new friends
  •     Send personal messages
  •     ... and learn a lot about our system!

 

Regards,

Smart Home Forum by FIBARO Team


  • 0

Jak wartość z urządzenia wprowadzić do zmiennej globalnej


Question

Posted

Cześć, 

jak wartość zaznaczoną na zielono na obrazku wprowadzić do zmiennej globalnej?

 

Please login or register to see this attachment.

6 answers to this question

Recommended Posts

  • 0
Posted

U mnie (HC3) zadziałało coś takiego, gdzie

 

ActualProductionPower - zmienna lokalna

PVPower - zmienna globalna      

 

 

if api.get("/globalVariables/PVPower") == nil then
         local responseData, status = api.post("/globalVariables/",{value=(json.encode(ActualProductionPower)),name="PVPower"})
         self:trace("Global Variable created: PVPower / status: " ..status) 
      else
         local responseData, status = api.put("/globalVariables/PVPower",{value=(json.encode(ActualProductionPower))})
         self:trace("Global Variable updated: PVPower / status: " ..status)
      end

  • 0
Posted

witam

 

local deviceID = 12123 -- nie wiem :)

local moc = tonumber(fibaro:getValue(deviceID, 'power')

  • 0
  • Inquirer
  • Posted

    Bardzo dziękuję

    Wesołych świąt.

     

    • Thanks 1
    • 0
    Posted (edited)

    10der

    (deviceID=65 is the double switch witch power meter.)

    below code

     

    local deviceID = 65
    local moc = tonumber(fibaro:getValue(deviceID, 'power'))
    self:debug(moc)
     
    gives to me an error:
    [21.12.2020] [20:15:10] [ERROR] [QUICKAPP146]: main.lua:262: Wrong parameter type, number required. Provided param 'table: 0x34288840' is type of table
     
    edit
    instead of fibaro: should be fibaro.
    Edited by Enriquez
    • 0
    Posted (edited)

    Witam, my answer was for topic starter who HAVE HC2. You mam HC3 please change : on . 

    local moc = tonumber(fibaro.getValue(deviceID, 'power'))

    Edited by 10der
    • 0
  • Inquirer
  • Posted

    Dziękuję

    • Like 1

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...