Jump to content
View in the app

A better way to browse. Learn more.

Tinkerunity

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Geschrieben
#!/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

Geschrieben
vor 22 Stunden 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 :-)

 

bearbeitet von jgmischke

Geschrieben
  • Autor
vor 58 Minuten schrieb jgmischke:
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

Geschrieben
  • Autor

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

Geschrieben
  • Autor
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.

Geschrieben
  • Autor

Oh in der Tat, das ist kaputt. Kümmere ich mich drum.

Wir haben drauf geachtet dass die alten Links die direkt in einen Thread führen noch funktionieren, der eigentliche Link direkt auf das Forum funktioniert aber nicht mehr 🙈.

Edit: Sollte jetzt gefixt sein.

Join the conversation

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

Gast
Reply to this topic...

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.