Author Topic: Flir Exx - Method to change system settings via Presets **Working**  (Read 850 times)

0 Members and 1 Guest are viewing this topic.

Offline defplayrTopic starter

  • Contributor
  • Posts: 16
  • Country: gb
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: [Select]
# 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

This will last until a reboot.

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

Code: [Select]
# 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


If you fancy writing your own, this hash calculator works for the CRC32. https://www.digitalvolcano.co.uk/hash.html
« Last Edit: February 05, 2023, 11:10:58 pm by defplayr »
 

Offline defplayrTopic starter

  • Contributor
  • Posts: 16
  • Country: gb
Re: Flir Exx - Method to change system settings via Presets **Working**
« Reply #1 on: February 02, 2023, 12:48:04 am »
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: [Select]
# 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


Torch OFF
Code: [Select]
# 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
« Last Edit: February 02, 2023, 01:36:10 am by defplayr »
 

Offline defplayrTopic starter

  • Contributor
  • Posts: 16
  • Country: gb
Re: Flir Exx - Method to change system settings via Presets **Working**
« Reply #2 on: February 02, 2023, 01:21:52 am »
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: [Select]
# Created  2-2-23
# Turns laser ON
.power entry
.power.settings entry
power.settings.laserActive entry
power.settings.laserActive bool true
# CRC32 28db4767


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


No full stop at the start of the last two lines? Still works... maybe ignored when read. Still learning.
« Last Edit: February 02, 2023, 01:26:49 am by defplayr »
 

Offline defplayrTopic starter

  • Contributor
  • Posts: 16
  • Country: gb
Re: Flir Exx - Method to change system settings via Presets **Working**
« Reply #3 on: February 05, 2023, 08:21:26 pm »
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: [Select]
# 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

All Screen Graphics ON
Code: [Select]
# 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

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: [Select]
# 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
« Last Edit: February 07, 2023, 05:10:46 pm by defplayr »
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf