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.

problem with the new LCD 128x64 Bricklet in python 2.7.3

Featured Replies

Geschrieben

Hello,

i have a problem with the new LCD 128x64 Bricklet in python 2.7.3 running on a raspberry.

When i run this code:

 

#!/usr/bin/env python

# -*- coding: utf-8 -*-

 

HOST = "localhost"

PORT = 4223

UID = "XYZ" # 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()

 

    # Write "Hello World" starting from upper left corner of the screen

    lcd.write_line(0, 0, "Hello World")

 

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

    ipcon.disconnect()

 

this error is shown:

 

Traceback (most recent call last):

  File "display.py", line 13, in <module>

    from tinkerforge.bricklet_lcd_128x64 import BrickletLCD128x64

ImportError: No module named bricklet_lcd_128x64[/color]

 

Can anyone help me?

 

 

  • 2 weeks later...
  • 3 weeks later...
Geschrieben

i am running it with python 3 on the red brick and get the same error. how does one solve it though ?

 

Geschrieben

I did yes, I made an error hence I also deleted my post.

Thanks fot he big help!

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.