Update Jibo integration version to 0.1.0.3, add integration type, and ensure proper JSON structure.

This commit is contained in:
2026-05-17 19:48:25 -04:00
parent b0019fe794
commit bf5ee44282
2 changed files with 25 additions and 3 deletions

View File

@@ -1,11 +1,12 @@
{
"domain": "jibo",
"name": "OpenJibo",
"version": "0.1.0.alpha.2",
"version": "0.1.0.3",
"documentation": "https://jibohacks.zane.org/homeassistant/int",
"requirements": [],
"dependencies": [],
"codeowners": ["@ZaneThePython"],
"config_flow": true,
"iot_class": "local_polling"
}
"iot_class": "local_polling",
"integration_type": "device"
}

View File

@@ -0,0 +1,21 @@
{
"config": {
"step": {
"user": {
"title": "Add a Jibo Robot",
"description": "Enter the details for your Jibo robot. The robot must be running the OpenJibo custom software with all ports exposed.",
"data": {
"name": "Robot Name",
"jibo_ip": "IP Address"
},
"data_description": {
"name": "A friendly name to identify this robot (e.g. Living Room Jibo).",
"jibo_ip": "The local IP address of the robot on your network."
}
}
},
"abort": {
"already_configured": "A Jibo robot with this IP address is already configured."
}
}
}