jgosnell

Members
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jgosnell's Achievements

Noob

Noob (1/14)

5

Reputation

  1. I had to edit the core.config_entries file is HASS to reflect a change in the device path. Old path: /dev/serial/by-id/usb-QEMU_QEMU_USB_SERIAL_1-0000:00:07.7-4-if00-port0 New path: /dev/serial/by-id/usb-QEMU_QEMU_USB_SERIAL_1-0000:00:07.0-4-if00-port0 All is working again now. I am still getting the serial and console entries but since everything seems to work I am not going to worry with it. <serial type='dev'> <source path='/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE24XXXXX-if00'/> <target type='usb-serial' port='1'> <model name='usb-serial'/> </target> <alias name='ua-serial006004'/> <address type='usb' bus='0' port='4'/> </serial> <console type='dev'> <source path='/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE24XXXXX-if00'/> <target type='serial' port='1'/> <alias name='ua-serial006004'/> <address type='usb' bus='0' port='4'/> </console>
  2. After "upgrading" the VM machine type and usb controller type to match yours, HASS no longer can see the device. Troubleshooting now.
  3. Is it possible it is because I have the port enabled as well? Should we enable the base USB port or just the device itself?
  4. I shut down my VM and edited the XML file to remove all references of a serial connection and all references of my ConBee II. I then enabled the automatic attachment of the device in USB Manager and selected to attach as serial only. Started up the VM and all seems good. Home Assistant sees the device and my integration and all devices show properly. Great Job!! One question for you though. When I go back to view the VM XML, I see a serial entry and a console entry for the ConBee like in this snippet. Is that normal? <serial type='dev'> <source path='/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DEXXXXXXX-if00'/> <target type='usb-serial' port='1'> <model name='usb-serial'/> </target> <alias name='ua-serial006002'/> <address type='usb' bus='0' port='4'/> </serial> <console type='dev'> <source path='/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DEXXXXXXX-if00'/> <target type='serial' port='1'/> <alias name='ua-serial006002'/> <address type='usb' bus='0' port='4'/> </console> Also, for anyone else seeing this. I did not have to edit the "core.device_registry" file under the .storage directory within HASS. What I detailed above is the only changes I had to make.
  5. Thank you very much. I will test with my ConBee II and let you know the results.
  6. Is there a setting that we would need to change to specify the serial connection option or is it automatically determined somehow? Nevermind.... After updating the plugin, I now see the toggle for "Connect as Serial Only". Thank you.
  7. Check your VM xml. Mine had a double entry for the ConBee after upgrade where one of the entries was wrapped in a <console> tag. I removed that entry and only left the <serial> tagged entry and everything started working. I have no idea what is adding the second <console> entry though.
  8. I just upgraded to 6.10.3 and my ConBee II is still working using the original steps above. I am running the latest version of Home Assistant as well.
  9. I currently have UnRaid 6.10.2 up and running with 4 drives connected directly to SATA connections on the mobo. These connections are SATA2 so I want to utilize a spare HBA I have and breakout the SAS connections into SATA3. Can I just move my drives to those connections since there is technically no traditional RAID or do I have a risk of data loss and corruption?
  10. No it doesn't need to match. My Conbee is physically connect to Bus 6 port 1 as reported by UnRaid. I think line that is specifying what bus/port to attach to within the HA VM so the Zigbee integration know where to look for it.
  11. Your pasted code show be inside the domain area. Mine for instance is between the "interface" section and the "console" section. Here is the code I am successfully using: <serial type='dev'> <source path='/dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2XXXXXX-XXXX'/> <target type='usb-serial' port='1'> <model name='usb-serial'/> </target> <alias name='serial0'/> <address type='usb' bus='0' port='4'/> </serial>
  12. Appears to be another update available. Thank you for maintaining this project.
  13. After reverting back to 6.9.2 and using the "USB Manager" plugin, mine has been really stable even through HASS VM reboots. Make sure the VM config itself is not set to auto mount the USB though and let the plugin handle it.