Products > Thermal Imaging

Flir Exx - Method to change system settings via Presets **Working**

(1/1)

defplayr:
Following on from this thread:
https://www.eevblog.com/forum/thermal-imaging/flir-exx-4900xxxx-mk1-(non-msx)-presets-and-palettes/

I have an E40 MK1 (no MSX) which I've just upgraded to software 1.43.23. I've been looking at which system settings can be changed via 'scripts' inside a preset. I'm still working on it, but I've not seen it mentioned as a method so I thought I'd let people know it's potential.

How-to for Presets is Post#6 in above linked topic.
https://www.eevblog.com/forum/thermal-imaging/flir-exx-4900xxxx-mk1-(non-msx)-presets-and-palettes/msg4667368/#msg4667368

Some examples:
The following script will turn off the auto calibrate NUC shutter. Useful if you need a constant output from the screen e.g. for video, time lapse or real time measurements.


--- Code: ---# Created  31-1-23
# Turns off Auto calibrate (NUC shutter)
.tcomp entry
.tcomp.services entry
.tcomp.services.autoNuc entry
.tcomp.services.autoNuc.active bool false
# CRC32 f9a8b276


--- End code ---
This will last until a reboot.

This script turns the auto calibrate NUC shutter back on and triggers a calibration.


--- Code: ---# Created  31-1-23
# Turns ON Auto calibrate (NUC shutter)
.tcomp entry
.tcomp.services entry
.tcomp.services.autoNuc entry
.tcomp.services.autoNuc.active bool true

.image entry
.image.services entry
.image.services.nuc entry
.image.services.nuc.commit bool true
# CRC32 dbb5ca1e


--- End code ---

If you fancy writing your own, this hash calculator works for the CRC32. https://www.digitalvolcano.co.uk/hash.html

defplayr:
Some new presets:

Torch ON
Turns lamp on as a torch. Works in IR or DC mode. If in IR mode, the lamp is turned off by NUC activating. If this is not optimal you could combine this code with the code for auto-calibrate off. (Blank line (L/F) between, no text).

--- Code: ---# Created  2-2-23
# Turns ON lamp as torch
.system entry
.system.vcam entry
.system.vcam.torch entry
.system.vcam.torch bool true
# CRC32 517964eb


--- End code ---

Torch OFF

--- Code: ---# Created  2-2-23
# Turns OFF lamp as torch
.system entry
.system.vcam entry
.system.vcam.torch entry
.system.vcam.torch bool false
# CRC32 e6c7015b
--- End code ---

defplayr:
Laser ON
On your own measuring damp in a wall? Set up the unit on a tripod, laser on the location you want to measure, do the job of two people! Not turned off by NUC activating.

--- Code: ---# Created  2-2-23
# Turns laser ON
.power entry
.power.settings entry
power.settings.laserActive entry
power.settings.laserActive bool true
# CRC32 28db4767


--- End code ---

Laser OFF

--- Code: ---# Created  2-2-23
# Turns laser OFF
.power entry
.power.settings entry
power.settings.laserActive entry
power.settings.laserActive bool false
# CRC32 1c86eaf9


--- End code ---

No full stop at the start of the last two lines? Still works... maybe ignored when read. Still learning.

defplayr:
This preset removes all on-screen graphics (except the WiFi icon(?)) and also removes the FLIR logo. You can turn the on-screen graphics back on, by pressing the 'back' button. To re-instate the FLIR logo, you need to use the 'All Screen Graphics ON' preset.
All Screen Graphics OFF

--- Code: ---# Created  2-2-23
# Turns OFF screen graphics
.ui entry
.ui.userSettings entry
.ui.userSettings.hideGraphics bool true
.ui.userSettings.overlayLogo entry
.ui.userSettings.overlayLogo bool false
# CRC32 477a48ac

--- End code ---

All Screen Graphics ON

--- Code: ---# Created  2-2-23
# Turns ON screen graphics
.ui entry
.ui.userSettings entry
.ui.userSettings.hideGraphics entry
.ui.userSettings.hideGraphics bool false
.ui.userSettings.overlayLogo entry
.ui.userSettings.overlayLogo bool true
# CRC32 32a84761

--- End code ---

This is a preset that turns off all screen graphics, and changes to the Grey (Gray if you like to spell it wrongly ^-^) palette. On the newer models I think this palette is named 'black hot'. It's ideal if you are using the unit to look for 'wildlife' at night.
Night Vision

--- Code: ---# Created 5-2-23
# Activates Grey Palette for NV
.ui entry
.ui.userSettings entry
.ui.userSettings.hideGraphics bool true
.ui.userSettings.overlayLogo entry
.ui.userSettings.overlayLogo bool false

.image entry
.image.sysimg entry
.image.sysimg.palette entry
.image.sysimg.palette.readFile text bw.pal
# CRC32 e8810f61

--- End code ---

Navigation

[0] Message Index

There was an error while thanking
Thanking...
Go to full version
Powered by SMFPacks Advanced Attachments Uploader Mod