Lok24

Eurobricks Counts
  • Content Count

    1129
  • Joined

  • Last visited

2 Followers

About Lok24

Spam Prevention

  • What is favorite LEGO theme? (we need this info to prevent spam)
    xxx
  • Which LEGO set did you recently purchase or build?
    Boost

Extra

  • Country
    Germany

Recent Profile Visitors

3818 profile views
  1. Please explain what you want to connect. You'll find my descriptions of the 6 pins in the net
  2. Yes, you can always start the "Bootloader" mode on any hub an reinstall any FW, Which settings? First you load the FW into the hub, and then your application (crane), there is no smartdevice needed The browser where you do his connects via BT with the hub.
  3. You could use a sensor to calibrate the whole thing
  4. Yes, the article is very old, and I'm not active there any more, and as the program has been enhanced (look the posts above) I don' distribute it any more. Im working on a new version, with better support for the programs "shuttle train" and "battery box".
  5. What is PU (according to TLG): It's the combination of unique connector an the LEGO Wireless Protocol 3.0.00 / BLE What is Control+: It is only one single App (among many others) It is not any "system". Why not? But they may use the same connectors and protocol. @idlemarvel This is really a remarkable work, thanks a lot!
  6. Lok24

    3rd Party Controllers and Powered Up!

    Yes, it's the architecture. I proposed years ago a "booster module", say 4x4x1 stud, connectable (via cable) to the hub and provide two more ports. With no additional intelligence or batteries. This could be done even today by a third party provider (HW + SW) (a stackable hub instead of stackable devices...) But to be honest: yes, this a common request, but from LEGOs point of there only exist very simple trains with one motor and one light, all other is "technic" with the four port hub or even two of them. Some Y cables or extension cables could help, but only for train motors an light. Is there really a reason to use the train motor? speed, perhaps?
  7. Lok24

    3rd Party Controllers and Powered Up!

    Not quite sure what you mean, but: - using the hubs with the remote other than in 0/1 mode would help - having a LEGO remote with proportional control is needed. "controller" means hub or remote? Would that help? What's the use case ?
  8. In any way you could install a watchdog routine by sending a broadcast every x seconds and stop the train, if no broadcasts received within the last x+a seconds.
  9. Lok24

    Powered Up 4.0.3 = Useless?

    All the blocks are explained here: https://www.lego.com/en-us/service/help/Power_Functions/LEGO-Powered-Up-programming-blocks-kA06N000000g04eSAA No, they don't. Just replace the motor block in the lower program with the green "Slider 0" symbol, like you use it in the upper program.
  10. Lok24

    Powered Up 4.0.3 = Useless?

    Die you allow accecs to all of the icons? Within "programming" in the menu (the "..." on the right, above the icon lane), and then the option most left (the "bricks"), you should select 3 of them to see all icons..
  11. Hi I just checked the hub-to.hub communication The idea was to use a "master"-hub and a remote to control two trains with the remote. As the master only uses one channel I submit a user-ID and hub-ID to address the "slaves" Here's the code: MASTER from pybricks.hubs import TechnicHub from pybricks.pupdevices import Motor, Remote from pybricks.parameters import Port, Button from pybricks.tools import wait hub = TechnicHub(broadcast_channel=1) my_remote = Remote() userID = "Lok24" hubID_A = "HUB1" hubID_B = "HUB2" vA = 0 vB = 0 vAold = 0 vBold = 0 while True: pressed = my_remote.buttons.pressed() vAold = vA vBold = vB if Button.LEFT_PLUS in pressed : vA = vA + 100 if Button.LEFT_MINUS in pressed : vA = vA - 100 if Button.LEFT in pressed : vA = 0 if Button.RIGHT_PLUS in pressed : vB = vB + 100 if Button.RIGHT_MINUS in pressed : vB = vB - 100 if Button.RIGHT in pressed : vB = 0 if vA != vAold: hub.ble.broadcast([userID,hubID_A,vA]) wait(100) if vB != vBold: hub.ble.broadcast([userID,hubID_B,vB]) wait(100) wait(10) SLAVES from pybricks.hubs import CityHub from pybricks.pupdevices import Motor from pybricks.parameters import Color, Port from pybricks.tools import wait hub = CityHub(observe_channels=[1]) motorA = Motor(Port.A) userID = "Lok24" hubID = "HUB2" # <<<<< must be different for each slave while True: data = hub.ble.observe(1) if data is None: hub.light.on(Color.RED) else: hub.light.on(Color.GREEN) uID,hID,v = data if uID == userID and hID == hubID: motorA.run (v) wait(100)
  12. Yes, but great improvement of functionality an quality.
  13. Yes, but you loose the load balancing, which is a major advantage with PU. Depends on what you want to archive.
  14. Yes, but on Bricklink they are always available, and much cheaper. Spike Hubs are rechargeable. For others I use rechargeable batteries, which are much easier to handle..
  15. Hi @and_ampersand_and and @BatteryPoweredBricks, Really great work, thanks for the extended version!