Digital Clock WinCC Unified V17 using JavaScript

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ย. 2024

ความคิดเห็น • 11

  • @harivenkatesh9832
    @harivenkatesh9832 หลายเดือนก่อน

    Thank you sir... How to change the format to date month year ❤

  • @afry3301
    @afry3301 5 หลายเดือนก่อน

    I don't know if that's new in V19, but in V19 you can change the clock element to a digital clock. Sadly it has no date or I haven't found it yet. I don't know what it's called in english but in german it's in "Gestaltung, Gestaltung - Stilelement"

  • @diegomeli9008
    @diegomeli9008 8 หลายเดือนก่อน

    thank you for the video.
    do you know how to show only the date without time?

    • @antomatix
      @antomatix  8 หลายเดือนก่อน

      I think you could change line 4 to:
      value = DateTime.getDate();
      Let me know if this works

  • @ArthurTolochko
    @ArthurTolochko ปีที่แล้ว

    Thank you for the video.
    I ran into a time zone issue. How to correctly set the local time?
    How can I make the time and date be in different rows (not in the same row)?
    How can I output only the time without the date?

    • @antomatix
      @antomatix  ปีที่แล้ว +1

      for local time try this
      var value;
      value = new Date().toLocaleString();
      return value;
      optionally for zones
      value = new Date().toLocaleString('en-US'); // use American format
      value = new Date().toLocaleString('en-US', {hour12: false}); // use American format with 24 hours

    • @antomatix
      @antomatix  ปีที่แล้ว +2

      you can separate format by using toLocaleTimeString to get time
      value = new Date().toLocaleTimeString();

  • @plcunified8921
    @plcunified8921 2 ปีที่แล้ว

    Can you add more videos about JavaScript in WinCC Unified ??

    • @antomatix
      @antomatix  2 ปีที่แล้ว

      That is my plan to do #javascript and #tiaportal videos

  • @OOOMuhammadSyahrulKhoiri
    @OOOMuhammadSyahrulKhoiri 3 หลายเดือนก่อน

    why is my clock not in sync

  • @Ramesh-iv3qg
    @Ramesh-iv3qg 6 หลายเดือนก่อน

    I used the same script but it's not work in the simulation.