Replies: 2 comments
-
|
You just need to merge all the config into a single JSON stanza (there was a missing comma too). {
"PROPERTIES" : {
"CCD_CONTROLS" : {
"Offset" : 80,
"USBBandWidthLimit" : 35
}
},
"SWITCHES" : {
"CCD_VIDEO_FORMAT" : {
"off" : ["POA_RAW8"],
"on" : ["POA_RAW16"]
}
},
"TEXT": {}
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Hi Aaron Thanks - all OK now Regards Graham |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Aaron
I am trying to add custom indi options for my Player One camera as shown in your wiki here
https://github.com/aaronwmorris/indi-allsky/wiki/INDI-custom-config
However when I insert the text as shown below
{
"SWITCHES": {},
"PROPERTIES": {},
"TEXT": {}
}
{
"PROPERTIES" : {},
"SWITCHES" : {
"CCD_VIDEO_FORMAT" : {
"on" : ["POA_RAW16"]
"off" : ["POA_RAW8"]
}
}
}
{
"PROPERTIES" : {
"CCD_CONTROLS" : {
"Offset" : 80
}
},
"SWITCHES" : {}
}
{
"PROPERTIES" : {
"CCD_CONTROLS" : {
"USBBandWidthLimit" : 35
}
},
"SWITCHES" : {}
}
I get an error
Extra data: line 6 column 1 (char 61)
and at the bottom
Please fix the erros above
INDI_CONFIG_DEFAULTS
What have I done wrong
Regards
Graham
Beta Was this translation helpful? Give feedback.
All reactions