Navigation

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. bsc101
    B
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    bsc101

    @bsc101

    1
    Reputation
    12
    Posts
    602
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    bsc101 Follow

    Best posts made by bsc101

    • RE: Multiple xS50 on a L513 (RS485)

      @martin-kudláček My fault, did not do step 1 in your decsription above since fwserial and firmware files were already present. It's 5.18 now, thank you!

      posted in Official EVOK API
      B
      bsc101

    Latest posts made by bsc101

    • RE: Multiple xS50 on a L513 (RS485)

      @martin-kudláček My fault, did not do step 1 in your decsription above since fwserial and firmware files were already present. It's 5.18 now, thank you!

      posted in Official EVOK API
      B
      bsc101
    • RE: Multiple xS50 on a L513 (RS485)

      @martin-kudláček Thanks a lot, it works now :) I can set another address than default now!
      Firmware is now 5.9 (it was 5.6 as you said), is there any need to upgrade to 5.18?

      posted in Official EVOK API
      B
      bsc101
    • RE: Multiple xS50 on a L513 (RS485)

      @martin-kudláček Sounds good, thanks for your efforts!

      posted in Official EVOK API
      B
      bsc101
    • RE: Multiple xS50 on a L513 (RS485)

      @martin-kudláček Just a quick question, since I also do have this problem with my xS50: Will there be some easy way to upgrade the firmware of the extension? What is the procedure of updating the firmware? Thanks for your answer!
      Regards,
      Boris

      posted in Official EVOK API
      B
      bsc101
    • RE: Android app for UniPi using EVOK over websockets

      @tomas_hora Hi Tomas,
      It is already, this is the test version: Dr.OnOff
      Have a nice day!
      Boris

      posted in Installations
      B
      bsc101
    • Android app for UniPi using EVOK over websockets

      Hi everybody,
      If anybody is looking for an Android app to control the UniPi, I just added UniPi support to my little app "Dr.OnOff" (you will find it on Google Play Store). It uses the EVOK api over websockets. The intention of my app is to manually control outputs (digital, relay, analog 0-10V) and read inputs and sensors. It is not meant to do any logics like 'if input1 then output5' or similar.
      Here are some screenshots:
      0_1528627009717_dronoff1.jpg 0_1528627027916_dronoff2.jpg
      I myself am using the app with Neuron M203 + xS50 extension to control lights, roof windows, window blinds, ventilating fans and so on. Automation is done (or will be done, not finished yet) with scripts running on the UniPi, e.g. controlling the fan speed depending on temperature and controlling ambient lights depending on daylight. Manual control is done with my app.

      If you have any questions or any other kind of feedback, let me know. Thank you.

      Boris

      posted in Installations
      B
      bsc101
    • RE: Wrong calculation of humidity

      Thank you!

      posted in Official EVOK API
      B
      bsc101
    • RE: Wrong calculation of humidity

      @TomasKnot

      Hi Tomas, any chance to get this fixed? Seems that I am the only one on planet earth interested in correct humidity values... :wink:
      Thank you very much in advance!

      Boris

      posted in Official EVOK API
      B
      bsc101
    • Wrong calculation of humidity

      Hi,
      Just found this little issue when playing around with a DS2438 sensor:

      'humidity': (((float(self.value[1]) / (float(self.value[0]) - 0.16)) / 0.0062) / (1.0546 - 0.00216 * float(self.value[2]))),
      

      should be:

      'humidity': ((((float(self.value[1]) / float(self.value[0])) - 0.16) / 0.0062) / (1.0546 - 0.00216 * float(self.value[2]))),
      

      Hope this helps!
      Regards,
      Boris

      posted in Official EVOK API
      B
      bsc101