Below are a bunch of YML files for setting up Home Assistant dashboards and automations for Rivian vehicles.
This file contains 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
{ | |
"info": { | |
"_postman_id": "838a5157-8988-4cff-84d5-1901fcdf37ca", | |
"name": "Rivian GraphQL", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", | |
"_exporter_id": "15345" | |
}, | |
"item": [ | |
{ | |
"name": "CSRF", |
This file contains 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
#define UIColorFromRGBA(rgbaValue) [UIColor \ | |
colorWithRed : ((float)((rgbaValue & 0xFF000000) >> 24)) / 255.0 \ | |
green : ((float)((rgbaValue & 0xFF0000) >> 16)) / 255.0 \ | |
blue : ((float)(rgbaValue & 0xFF00) >> 8) / 255.0 \ | |
alpha : ((float)(rgbaValue & 0xFF)) / 255.0] |
This file contains 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
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
mavenCentral() | |
maven { | |
url 'https://oss.sonatype.org/content/repositories/snapshots' | |
} | |
} | |
dependencies { |