You cannot save _imageStitching to mySettings
Working Examples with Z1:
_getMySetting will not work if you have not saved a setting
/// get filter saved settings
static Future<Map<String, dynamic>> get filterSavedSetting async {
var data = {
'name': 'camera._getMySetting',
'parameters': {
'optionNames': ['_filter'],
'mode': 'image'
}
};
var response = connect(_url, 'post', data);
return response;
}
/// get my settings image mode
/// The syntax is different on S and SC
/// This will only work on V, Z1, SC2, and SC2B
static Future<Map<String, dynamic>> getMySetting() async {
var data = {
'name': 'camera._getMySetting',
'parameters': {'mode': 'image'}
};
var response = connect(_url, 'post', data);
return response;
}
/// get my settings video mode
/// The syntax is different on S and SC
/// This will only work on V, Z1, SC2, and SC2B
static Future<Map<String, dynamic>> getMySettingVideo() async {
var data = {
'name': 'camera._getMySetting',
'parameters': {'mode': 'video'}
};
var response = connect(_url, 'post', data);
return response;
}
Test on Aug 8, 2021 with Z1 firmware 2.00.1
firmware and model info
},
"firmwareVersion": "2.00.1",
"gps": false,
"gyro": true,
"manufacturer": "RICOH",
"model": "RICOH THETA Z1"
Status: Test worked. Saving to mySettings and retrieving mySettings using the HTTP request above
Hypothesis on problem: Developer did not save mySettings first
NOTE: You must first save a setting to mySettings or getSettings will not work
{name: camera._getMySetting, results: {options: {aperture: 0, _autoBracket: {_bracketNumber: 2, _bracketParameters: [{ap
erture: 2.1, _colorTemperature: 5000, exposureCompensation: 0.0, exposureProgram: 1, iso: 400, shutterSpeed: 0.004, whit
eBalance: auto}, {aperture: 2.1, _colorTemperature: 5000, exposureCompensation: 0.0, exposureProgram: 1, iso: 400, shutt
erSpeed: 0.004, whiteBalance: auto}]}, captureInterval: 6, captureNumber: 0, _colorTemperature: 5000, _compositeShooting
OutputInterval: 600, _compositeShootingTime: 86400, exposureCompensation: 0.0, exposureDelay: 0, exposureProgram: 2, fil
eFormat: {height: 3360, type: jpeg, width: 6720}, _filter: hdr, iso: 0, isoAutoHighLimit: 6400, _shootingMethod: normal,
shutterSpeed: 0, whiteBalance: auto}}, state: done}