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
| Corrections to: https://github.com/Danielhiversen/flux_led/issues/53 for the newer Magic Home LED controller. | |
| My Magic Home WiFi LED controller https://www.amazon.com/dp/B08GLSHJGS (non affiliate link) didn't work quite as described in the issue. It has a version identifier AK001-ZJ2145 which is different, so not surprising that it behaves differently. Some of the changes appear to be them actually fixing the well known security problems with these controllers, they're still not safe to put on the public Internet and still will respond with your wifi SSID and password with the following command: | |
| echo -e "AT+WSKEY\r" | nc -u -v -w 3 $IP 48899; echo | |
| I powered the controller up with 12VDC and scanned for new SSIDs. It came up as LEDnet003325A63A where the MAC address ends with 25A63A. I had used the above instructions and managed to soft-brick it so needed to reset to get back to a working state. These controllers no longer revert to AP mode if they can't connect (it was a security problem) so you have to fact |
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
| require 'cairo' | |
| require 'imlib2' | |
| --~ require 'cairo_imlib2_helper' | |
| --~ cairo_draw_image('/home/Data/pictres/500px/18.jpg' , cs, 0, 0, 0.2, 0.2) | |
| function conky_images() | |
| if conky_window == nil then return end | |
| local sw = conky_window.width | |
| local sh = conky_window.height | |
| local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, sw, sh) |