I've kept myself busy the last few months according to my Github contributions stats, working mostly on private repositories
Private repositories


I've kept myself busy the last few months according to my Github contributions stats, working mostly on private repositories

It is just me, or @Google's Chrome 404 error title has an extra '1' instead of '!' ? Someone's Shift key must have slipped. I find it cute though, shows that there are humans behind it.. #bug #Google @Google Version 76.0.3809.100 (Official Build) (64-bit)

Uploading firmware and other partition items like CA/client cert, cert key, NVS partitions, espfs images using @SpritesMods's esphttpd project https://github.com/Spritetm/esphttpd #ESP32
Upgraded my ESP-IDF to v3.3-rc, expecting the upgrade to v4.0 to be PIA given the number of material changes #ESP32
Added GUI to show serial debug output to the TFT https://youtu.be/19-C5f2eHmQ #esp32 #iot #lvgl #embedded
Reminder: the "S" in IoT stands for Security

Our 13m³ pool water temperature reaching just over 30°C thanks to the DIY solar heater I blogged about last year https://harizanov.com/2018/07/diy-swimming-pool-solar-heater/ solar harvesting
Node-RED deserves more than this.. https://x.com/knolleary/status/1159172242665811968
Considering moving all graphical resources (icons, fonts) of the TFT32 thermostat project to dedicated OTA update-capable partitions to allow GUI branding and customization. Few technical challenges to do so, but completely doable. PoC of that done, and working well. As a result of the decoupling of graphical resources from the code, the OTA image for…
Can't think of a reason why anyone would need an ESP32 emulation in QEMU, but TIL that it exis https://github.com/Ebiroll/qemu_esp32
Three ways of provisioning an ESP32 with WiFi credentials: smartconfig, AP captive portal, and GUI: https://www.youtube.com/watch?v=UNdZGgIRWVo
It's close to a year since I started working on my ESP32 based thermostat controller/gateway project with TFT display. It now has 120K+ lines of code (components included), work done entirely at nights/weekends. What's the longest you have worked on a passion project? #IoT https://x.com/mharizanov/status/1027868368500666368

Got one of these for my 10 y.o. daughter, a good introduction to the world of embedded #microbit

https://mqtt-explorer.com/ looks quite promising, I need to take a closer look #MQTT #IoT

3D printed enclosure prototype for the ESP32 based IoT thermostat controller project I have been tweeting about recently #esp32 #MQTT #smarthome #homeautomation #IoT #3Dprinting #design #Mechanical Need to adjust the UI for the display cover curves..

Pairing a and controlling with a touch GUI a 433Mhz wireless relay #IoT #esp32 #lvgl

Using ESP32 generated QR code with AP credentials -> captive portal to configure the WiFi STA configuration in 5 seconds.. #IoT Isn't that cool?

I didn't know that Samsung S8's camera app has built in QR code recognition, just pointing it to a QR with AP login details prompts connection UI..neat

Experimenting with dynamic QR generation on ESP32. Useful for product registration with serial number by the end user witn an app #IoT
Do we really need to have all the answers?
1.5K followers? – woohoo!
Reminder to self: Arduino's millis() overflows every approx. 50 days, use if ((unsigned long)(millis() – previousMillis) >= interval) instead
I'll be speaking at the "IoT Bulgaria Summit 2019" community event this September, session topic "Securing MQTT for embedded IoT devices with Mutual TLS Authentication". Use this opportunity to chat with me on anything IoT. https://www.eventbrite.com/e/iot-bulgaria-summit-2019-tickets-54290900545?utm-medium=discovery&utm-campaign=social&utm-content=attendeeshare&aff=estw&utm-source=tw&utm-term=listing @Eventbrite
This is why I don't own voice assistants: human workers are listening to recordings from Google Assistant, too: https://www.theverge.com/2019/7/11/20690020/google-assistant-home-human-contractors-listening-recordings-vrt-nws#comments

This is my latest wireless battery temperature and humidity sensor revision. It is optimized for long range (200m) and long life (2+ years sending once a minute). To be used with the display hub and relay actuator I tweeted recently #IoT #smarthome

Test drove BMW i3, lovely vehicle. Wishing I can afford one some day. #EV #BMW

Connected our pear tree to the internet. It will publish a notification when pears are ready to be picked up. #IoT #esp32 #homeautomation

Designed a high quality 16A relay actuator with 433Mhz RFM69, two separate DS18B20 plugs, option for RTC and SPI flash. Will be used with the thermostat controller I tweeted yesterday. #IoT #smarthome #arduino
This is why I chose my IoT development framework carefully. Of course, no one is immune to framework obsolescence: https://www.reddit.com/r/esp32/comments/c9tp0d/super_bummed_spent_almost_2_years_on_a_hobby/
Updated my OTA server to require client certificate to be presented before providing the firmware binary. This way the binary is kept away from curious eyes, and only provided after mutual TLS authentication proves the asking party is who they say they are. #IoT #OTA #Security

PCB for ESP32 based smart thermostat controller project with touch bring-up success. The enclosure is in the works. Feeling satisfied. #IoT #smarthome

Implemented option to send a copy of the ESP32 serial log messages to MQTT; Makes it so much easier to debug remote nodes. Literally takes one line of code, look up esp_log_set_vprintf. Next is to provide API to change the log level runtime so I can focus on the desired component