remotecontrol Posted December 30, 2018 at 03:39 PM Share Posted December 30, 2018 at 03:39 PM Hallo TF Team, es scheint, als könnte man einen Button nicht exakt bündig zum rechten oder unteren Rand platzieren - wenn man den letzten Pixel nutzt wird der Button nicht mehr angezeigt Beispiel lcd_128x64_set_gui_button(lcd, 0, 0, 47, 21, 16, "XX"); => geht: 47 mit 16 Höhe => letzter Pixel ist in Zeile 62 (nicht 63 !) lcd_128x64_set_gui_button(lcd, 0, 0, 48, 21, 16, "XX"); => geht nicht mehr, Button wird nicht angezeigt Ist das so gewollt oder eher ein Bricklet Bug, der auf "y + height >= 64" prüft. Letzeres stimmt eigentlich nicht, denn bei y=63 und Höhe=1 liegt der Button ja noch in Zeile 63 - oder ? Quote Link to comment Share on other sites More sharing options...
borg Posted January 2, 2019 at 09:08 AM Share Posted January 2, 2019 at 09:08 AM Muss ich mir angucken, klingt aber in der Tat nach einem off-by-one irgendwo. Komme ich womöglich erst morgen zu. Quote Link to comment Share on other sites More sharing options...
borg Posted January 4, 2019 at 01:37 PM Share Posted January 4, 2019 at 01:37 PM Du hattest exakt recht mit deiner Vermutung! Den gleichen Bug gab es auch noch beim Slider. Neue Firmware ist veröffentlicht, hab das getestet mit: /usr/bin/env python # -*- coding: utf-8 -*- HOST = "localhost" PORT = 4223 UID = "GK7" # Change XYZ to the UID of your LCD 128x64 Bricklet from tinkerforge.ip_connection import IPConnection from tinkerforge.bricklet_lcd_128x64 import BrickletLCD128x64 if __name__ == "__main__": ipcon = IPConnection() # Create IP connection lcd = BrickletLCD128x64(UID, ipcon) # Create device object ipcon.connect(HOST, PORT) # Connect to brickd # Don't use device before ipcon is connected # Clear display lcd.clear_display() lcd.remove_all_gui() lcd.set_gui_button(0, 100, 50, 28, 14, 'test') lcd.set_gui_slider(0, 0, 0, 128, 0, 50) lcd.set_gui_slider(1, 0, 30, 34, 1, 10) raw_input("Press key to exit\n") # Use input() in Python 3 ipcon.disconnect() Der Button und beide Slider tauchen in 2.0.5 nicht auf, funktionieren aber in der neuen 2.0.6. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.