Search found 14 matches

by kapavita
Sat Sep 08, 2018 11:56 am
Forum: Troubleshooting and Support
Topic: BSC 462 Firmware will not update
Replies: 18
Views: 19492

Re: BSC 462 Firmware will not update

(I have a BCS-460) After upgrading the firmware to 4.1.2 build edf0fe2c, i did a system reset and tried to restore my backup file using the BCS Utilities link. I tried many many times and every time it froze after restoring Process 0 & State 0. I did a search and I found that someone had a simil...
by kapavita
Sat Feb 17, 2018 9:05 am
Forum: General Discussion
Topic: Availability of BCS 462
Replies: 9
Views: 8200

Re: Availability of BCS 462

482 sounds exciting!

"replacement" usually means limiting/ending support of the older product(s).
- what is your support plan for 460?
- will you offer a replacement program for current 460/462 owners?
by kapavita
Sat Jan 23, 2016 6:11 pm
Forum: Roadmap and Feature Request
Topic: BCS 4.0.1 firmware released
Replies: 24
Views: 33629

Re: BCS 4.0.1 firmware released

I think there is something else in play here. I've upgraded 2 460's and 2 462's in the last couple of days and none of them have had this issue. Have you tried the default username/password to see if that works? To clear it, push and hold the reset button for 8 seconds. Thanks for the reply. after ...
by kapavita
Sat Jan 23, 2016 5:23 pm
Forum: Roadmap and Feature Request
Topic: BCS 4.0.1 firmware released
Replies: 24
Views: 33629

Re: BCS 4.0.1 firmware released

installed new firmware,
finder detected BCS-460 (see attached),
cannot access the unit because password protection is enabled with the update

I don't use authentication and, based on my experiences, this is the first time that the unit was protected after an upgrade.
Please help. Thanks!
by kapavita
Wed Jan 28, 2015 4:40 pm
Forum: Roadmap and Feature Request
Topic: BCS 4.0 Public Beta 2
Replies: 67
Views: 41563

Re: BCS 4.0 Public Beta 2

Is it possible to keep a timer running when the process using this timer is paused? Many times during the mash process, I have to stop the outputs for the pump and RIMS. Pausing the process stops the outputs but it also stops the timers which then makes it challenging to track consistent 60 or 90 mi...
by kapavita
Tue Apr 29, 2014 2:32 pm
Forum: General Discussion
Topic: New Direction
Replies: 6
Views: 5845

Re: New Direction

The v.4 UI looks very nice.
Please let me know if you need early release testers.
Is there an ETA for version 4?
by kapavita
Fri Sep 06, 2013 11:54 pm
Forum: HMI Builder
Topic: rounding number after calculating celsius?
Replies: 2
Views: 9999

Re: rounding number after calculating celsius?

i believe you can use the "num.toFixed(no_of_digits)" build in function

var F = 154;
var digs = 1;
var C = (((F - 32)*5)/9).toFixed(digs);

result C=67.8
by kapavita
Fri Aug 30, 2013 7:26 pm
Forum: HMI Builder
Topic: degree symbol works in HMI, not on main page
Replies: 2
Views: 10717

ZAAaa: degree symbol works in HMI, not on main page

You could try these:
...+ &deg + "F" ...

...+ "&deg" + "F" ...

...+ &#176 + "F" ...

...+ "&#176" + "F" ...

Good luck!
by kapavita
Fri Oct 07, 2011 10:09 am
Forum: Roadmap and Feature Request
Topic: Add Temp Gauge As A Widget In HMI Builder
Replies: 14
Views: 26916

Re: Add Temp Gauge As A Widget In HMI Builder

I believe it has been mentioned in other threads that some of the changes/features that you listed
are considered by ECC.

I am afraid that you will need to do some programming if you want to implement them in the short term.
by kapavita
Thu Oct 06, 2011 8:55 am
Forum: Roadmap and Feature Request
Topic: Add Temp Gauge As A Widget In HMI Builder
Replies: 14
Views: 26916

Re: Add Temp Gauge As A Widget In HMI Builder

I hope this code helps you. To use it, You will need to adjust the following (based on your setup): TYP_TEMP_GAUGE (match your numbering scheme) HLT_temp (ultemps array position for your HLT temperature) MLT_temp (ultemps array position for your MLT temperature) BK_temp (ultemps array position for y...