Failing that ill just add another mode use in the old one as a base and input the new coefficient. Im dowm to the last piece of the puzzle.
I'm new to the forums and eager to please, so I will explain to you nicely why you are not down to the last piece of the puzzle.
Most computer programs (including firmware) are written in a high level programming language, and another program called a compiler is used to turn this human-readable set of instructions into "binary code", which is a long series of 1s and 0s. Given enough 1s and 0s, a computer like the eVic VTC Mini can be made to follow instructions. This is how computers work.
In this case, the high level language used is probably assembly. If you indeed have a "good base with programming", you'd know that the dialect of assembly depends on the architecture of the CPU meant to use it. A "disassembler" is a program that would translate the binary firmware file into the raw instructions that a human can read, but you must know the architecture of the chip and have access to (or engineer yourself) a program to do this.
If you get that far, the assembly code will not look like "10 PRINT HELLO WORLD; GOTO 10" or easily-understandable C or Java code; it will look like gibberish to you, similar to this:
106 zstr_count:
107 00000030 B9FFFFFFFF mov ecx, -1
108
109 .loop:
110 00000035 41 inc ecx
111 00000036 803C0800 cmp byte [eax + ecx], 0
Without being intimately familiar with the architecture and low-level computer science, you cannot hope to simply use a temperature mode as a "template" and plug in some values. It's not a shell script. As +
IanDVaypes stated succinctly, if you have to ask, there's no way.
Your enthusiasm is good though, and I wish we could try out SS on the VTC Mini! What other materials were you interested in using? I'm pretty new to this stuff so I only know about kanthal, nichrome, nickel, and titanium.