Here are my steps.
At first, I took a look to RK30xxLoader(L)_V1.18.bin. This file appears in update.img for my device. So, I unpacked update.img using rk29Kitchen.
strings on that file returns nothing interesting, so I assumed the file is crypted
| According to all known laws of aviation, there is no way a bee should be able to fly. | |
| Its wings are too small to get its fat little body off the ground. | |
| The bee, of course, flies anyway because bees don't care what humans think is impossible. | |
| Yellow, black. Yellow, black. Yellow, black. Yellow, black. | |
| Ooh, black and yellow! | |
| Let's shake it up a little. | |
| Barry! Breakfast is ready! | |
| Coming! | |
| Hang on a second. | |
| Hello? |
GLOW_DEVICE_ID with the relevant information for your device):
mqtt:
sensor:
- name: "Home Power"
state_topic: "glow/GLOW_DEVICE_ID/SENSOR/electricitymeter"
unit_of_measurement: 'W'
value_template: "{{ (value_json['electricitymeter']['power']['value'] * 1000) | int }}"
icon: 'mdi:flash'
| #!/bin/bash | |
| ACTION="ln -sf" | |
| if [ $# -lt 2 ]; then | |
| echo "usage: $0 srcdir dstdir" | |
| exit 1 | |
| fi | |
| SRCDIR=$1 | |
| DSTDIR=$2 |
| #EXTM3U | |
| #EXTINF:-1,BBC - Radio 1 | |
| http://as-hls-ww-live.akamaized.net/pool_01505109/live/ww/bbc_radio_one/bbc_radio_one.isml/bbc_radio_one-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Xtra | |
| http://as-hls-ww-live.akamaized.net/pool_92079267/live/ww/bbc_1xtra/bbc_1xtra.isml/bbc_1xtra-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1Dance | |
| http://as-hls-ww-live.akamaized.net/pool_62063831/live/ww/bbc_radio_one_dance/bbc_radio_one_dance.isml/bbc_radio_one_dance-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 1 Anthems (UK Only) | |
| http://as-hls-uk-live.akamaized.net/pool_11351741/live/uk/bbc_radio_one_anthems/bbc_radio_one_anthems.isml/bbc_radio_one_anthems-audio%3d96000.norewind.m3u8 | |
| #EXTINF:-1,BBC - Radio 2 |
| // Fibonacci Stars pattern by Jason Coon | |
| // For Fibonacci256: https://www.tindie.com/products/19429 | |
| // Meant for use in this sketch: https://github.com/jasoncoon/esp8266-fastled-webserver/tree/fibonacci256 | |
| // Draws shooting stars radiating outward from the center, along Fibonacci spiral lines. | |
| void fibonacciStarsWithOffset(uint16_t stars[], uint8_t starCount, uint8_t offset = 21, bool setup = false, bool move = false) { | |
| // use a number from the Fibonacci sequence for offset to follow a spiral out from the center | |
| for (uint8_t i = 0; i < starCount; i++) { |