Jump to content

Neues Forum Testeintrag


borg

Recommended Posts

#!/usr/bin/env python
# -*- coding: utf-8 -*-

HOST = "localhost"
PORT = 4223
UID = "XYZ" # Change XYZ to the UID of your Ambient Light Bricklet 3.0

from tinkerforge.ip_connection import IPConnection
from tinkerforge.bricklet_ambient_light_v3 import BrickletAmbientLightV3

# Callback function for illuminance callback
def cb_illuminance(illuminance):
    print("Illuminance: " + str(illuminance/100.0) + " lx")
    print("Too bright, close the curtains!")

if __name__ == "__main__":
    ipcon = IPConnection() # Create IP connection
    al = BrickletAmbientLightV3(UID, ipcon) # Create device object

    ipcon.connect(HOST, PORT) # Connect to brickd
    # Don't use device before ipcon is connected

    # Register illuminance callback to function cb_illuminance
    al.register_callback(al.CALLBACK_ILLUMINANCE, cb_illuminance)

    # Configure threshold for illuminance "greater than 500 lx"
    # with a debounce period of 1s (1000ms)
    al.set_illuminance_callback_configuration(1000, False, ">", 500*100, 0)

    raw_input("Press key to exit\n") # Use input() in Python 3
    ipcon.disconnect()

Testcode

Link to comment
Share on other sites

Vor Zitat

vor 3 Minuten schrieb borg:
Zitat
Zitat

Dies ist ein Test. In diesem Thread könnt ihr Testeinträge machen

👍

Hm, ziemlich viel Platzverschwendung. Aber schöne Funktionen und klarer im Aufbau.

Und die Anzahl der Gäste ist ja unheimlich 🙂

Test Zitat in Zitat

Zitat nach Zitat vor Zitat

vor 3 Minuten schrieb borg:
Zitat
Zitat

Dies ist ein Test. In diesem Thread könnt ihr Testeinträge machen

👍

Hm, ziemlich viel Platzverschwendung. Aber schöne Funktionen und klarer im Aufbau.

Und die Anzahl der Gäste ist ja unheimlich 🙂

Test Zitat in Zitat

Nach Zitat

Link to comment
Share on other sites

vor 1 Stunde schrieb jgmischke:
Am 10.11.2019 um 15:51 schrieb borg:

Dies ist ein Test. In diesem Thread könnt ihr Testeinträge machen

👍

Hm, ziemlich viel Platzverschwendung. Aber schöne Funktionen und klarer im Aufbau.

Und die Anzahl der Gäste ist ja unheimlich 🙂

Zitat in Zitat mit Quelle

Edit: Oh, das funktioniert ja doch. Man muss dafür das innere Zitat markieren, kopieren und einfügen.

  • Confused 1
Link to comment
Share on other sites

Join the conversation

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

Guest
Reply to this topic...

×   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...