Hue light color control with HUSBZB-1

I’ve setup a hue lamp with the usb stick acting as the zha hub. It connected right away and was able to view the state entity and control the light. The issue is the colors chosen are no where near the colors emitted by the lamp. If I choose something in the blues, the lamp is red, choosing middle white emits green, and so on. Brightness and on/off control work fine. It looks like the RGB colors are correct.

# This is the "blue" JSON
{
  "brightness": 255,
  "hs_color": [
    240,
    100
  ],
  "rgb_color": [
    0,
    0,
    255
  ],
  "xy_color": [
    0.136,
    0.04
  ],
  "friendly_name": "Philips LLC011",
  "supported_features": 49
}

# This is the "white" JSON
{
  "brightness": 255,
  "hs_color": [
    60,
    0
  ],
  "rgb_color": [
    255,
    255,
    255
  ],
  "xy_color": [
    0.323,
    0.329
  ],
  "friendly_name": "Philips LLC011",
  "supported_features": 49
}