This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rad Power Bikes Radrunner 3 plus 7-pin Julet/HiGo pinout diagram | |
| When looking at the connector, with the two key triangles at the top left/right | |
| 3-o'clock pin: ground | |
| 1-o'clock pin: +52v, always | |
| 5-o'clock pin: +52v, while bike is on | |
| 11-o'clock pin: +52v, while 'light' indicator is on | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - id: '1591476042770' | |
| alias: Vacuum web trigger | |
| description: '' | |
| trigger: | |
| - platform: webhook | |
| webhook_id: WEBHOOK SECRET ID GOES HERE | |
| condition: [] | |
| action: | |
| - service: python_script.vacuum_named_segment | |
| data_template: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Linq; | |
| using UnityEditor; | |
| using UnityEngine; | |
| class BillboardCreator : ScriptableWizard | |
| { | |
| private BillboardAsset _billboard; | |
| private SerializedObject _bs; | |
| private Mesh _mesh; |