1
0

EVCCConfig.properties 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. ###############################################################################
  2. # The MIT License (MIT)
  3. #
  4. # Copyright (c) 2015 - 2019 Dr. Marc Mültin (V2G Clarity)
  5. #
  6. # Permission is hereby granted, free of charge, to any person obtaining a copy
  7. # of this software and associated documentation files (the "Software"), to deal
  8. # in the Software without restriction, including without limitation the rights
  9. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. # copies of the Software, and to permit persons to whom the Software is
  11. # furnished to do so, subject to the following conditions:
  12. #
  13. # The above copyright notice and this permission notice shall be included in
  14. # all copies or substantial portions of the Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. # THE SOFTWARE.
  23. ###############################################################################
  24. # ===========================================================
  25. # Configuration properties for a unique electric vehicle (EV)
  26. # ===========================================================
  27. # Network interface
  28. #------------------
  29. #
  30. # The network interface name like en3 or eth1 of the network interface on which to communicate with the SECC via a
  31. # link-local IPv6 address
  32. network.interface = en0
  33. # Security
  34. #---------
  35. #
  36. # Possible values:
  37. # - true
  38. # - false
  39. # If this value is set to 'false', TCP will be used on transport layer
  40. # If no correct value is provided here, 'false' will be chosen
  41. tls = false
  42. # Contract certificate update time span
  43. #-------------------------------------
  44. #
  45. # Integer value defining the time span in days which precedes the expiration of a contract certificate
  46. # and during which an update of the contract certificate needs to be performed
  47. contract.certificate.update.timespan = 14
  48. # SessionID
  49. #----------
  50. #
  51. # Hexadecimal string representing a byte array. If this value is unequal to "00", then it represents a
  52. # previously paused V2G communication session
  53. session.id = 00
  54. # Selected payment option
  55. #------------------------
  56. #
  57. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  58. # Possible values are:
  59. # - Contract
  60. # - ExternalPayment
  61. authentication.mode =
  62. # Requested energy transfer mode
  63. #--------------------------------
  64. #
  65. # This (single!) value needs to be provided from a previous charging session if charging has been paused.
  66. # Possible values are:
  67. # - AC_single_phase_core
  68. # - AC_three_phase_core
  69. # - DC_core
  70. # - DC_extended
  71. # - DC_combo_core
  72. # - DC_unique
  73. energy.transfermode.requested = AC_three_phase_core
  74. #
  75. # Implementation classes
  76. #---------------------------------------------
  77. # If you want to replace the implementation then set the following value
  78. # to the name of your class
  79. # When omitted default dummy implementation will be used
  80. implementation.evcc.controller = com.v2gclarity.risev2g.evcc.evController.DummyEVController
  81. # XML representation of messages
  82. #-------------------------------
  83. #
  84. # Possible values:
  85. # - true
  86. # - false
  87. # If this value is set to 'true', the EXICodec will print each message's XML representation (for debugging purposes)
  88. # If no correct value is provided here, 'false' will be chosen
  89. exi.messages.showxml = true
  90. # Hexadecimal and Base64 representation of messages
  91. #--------------------------------------------------
  92. #
  93. # Possible values:
  94. # - true
  95. # - false
  96. # If this value is set to 'true', the EXICodec will print each message's hexadecimal and Base64 representation (for debugging purposes)
  97. # If no correct value is provided here, 'false' will be chosen
  98. exi.messages.showhex = true
  99. # Extended logging of signature verification
  100. #-------------------------------------------
  101. #
  102. # Possible values:
  103. # - true
  104. # - false
  105. # If this value is set to 'true', extended logging will be printed upon verification of signatures (for debugging purposes)
  106. # If no correct value is provided here, 'false' will be chosen
  107. signature.verification.showlog = true
  108. # EXI codec
  109. #--------------------------------
  110. #
  111. # This (single!) value tells the program which EXI codec to use to en-/decode EXI messages
  112. # Possible values are:
  113. # - exificient
  114. # - open_exi
  115. # If no correct value is provided here, 'exificient' will be used
  116. exi.codec = exificient
  117. # Voltage accuracy
  118. #----------
  119. #
  120. # Used for the PreCharge target voltage. The present voltage indicated by the charging station in PreChargeRes can deviate from the present voltage
  121. # set in PreChargeReq by an EV-specific deviation factor. This value is given in percent.
  122. # Example: voltage.accuracy = 10 means: present voltage may deviate from target voltage by 10 percent in order to successfully stop PreCharge
  123. voltage.accuracy = 5