yoh-there's instructables
Tell us about yourself!
Achievements
- yoh-there commented on yoh-there's instructable SAE J1772 EV Charger Checker
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
If you have experience with coding an esp8266 for Blynk this should be doable. Basically replace what I do with pubsub to Blynk.If you don't mind the Omnik still dropping data to some Chinese logger, you can also take out the complex network switching part.I can't help you code it though.
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
Great, though the timeout is actually already 2000 ms in the code. Are you saying for your setup it is even more? Or did you earlier change the code that does the actual querying?
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
Of what? The scetch only uses ESP8266WiFi and PubSub. You said you removed all the MQTT stuuf so pubsub should be irrelevant. The Standard WiFi livrary should not have issues.
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
Hard to say. If the Wemos connects to the AP of the Omnik succesfully, them it's almost certainly the (rather daft) string. I am not claiming the conversion tool is correct (and I forgot where I got the original description, shame on me for not documenting it), though I believe some have used it successfully.To ensure no coding errors I would suggest to use the original code. If you follow the instructions to the letter, no network changes to the Omnik part should be needed and the serial out should give hints how far it proceeded.
- yoh-there commented on yoh-there's instructable MQTT and Wifi Powered Mailbox FlagView Instructable »
Interesting suggestion and it sure would work. But these lids are smacked hard and it will probably break, with all sorts of nasty impact. But it got me thinking. While the current solutin works fine, maybe something can be done with a low power hall sensor.
- yoh-there commented on yoh-there's instructable MQTT and Wifi Powered Mailbox FlagView Instructable »
Responding "from the hip" :-) That is a pretty neat idea, and could extent battery life by close to a factor 2 in theory. I don't know if the chip still needs a reset pulse if enabling, but that can be checked in the data sheet or through some experimentation. I think even the 0.64 uA can probably be avoided if wired in a way I do the reset now. The only thing to guarantee is that the processor latches on in time.As for the downsides:1) There is a fair chance that winter and moisture by now have a bigger effect on battery life than these minute currents. Not saying it is, but the effect might be minute. This does not change the fact that squeezing power is always fun (by coincidence I just watched that part of "Apollo 13" where they find out they need to drop current …
see more » - yoh-there's instructable Simple and Cheap Laser Digital Audio Transmission's weekly stats:
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTT
BTW, I may be a bit daft but in hex 4E + A7 + 7F + 24 = 198(hex)198 times 2 = 330 (hex)330 + 73 = 3A3I would think the crc byte should be A3?
View Instructable »Glad you could use it, and thank you for pointing out the silly omission. I will fix the spreadsheet.
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
Agreed. For instant data like current power and energy generated today it's absolutely good enough. For historical graphs it has no functionality (makes sense, it has no database!). For that I use that homebuild dash, and also upload to pvoutput.Good enough, not ideal. Yet.
- yoh-there commented on yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTTView Instructable »
That dashboard is actually the Omnik portal and is, of course, only displaying inverter data. I have made one or two dashboards myself using Google charts and websockets enabled on the mosquitto broker. It looks good, shows the inverter, consumption, the EV charger, but it's not very robust. I might just decide to be happy with MQTT dash, or build a custom Android app. We'll see. So many ideas.......
- yoh-there's instructable Omnik Inverter Off It's Cloud and on My MQTT's weekly stats:
- yoh-there commented on adithyapaip's instructable Refrigerator Door Alarm
- yoh-there commented on Explorato_Technomentis's instructable MQTT Based Fire Detection SystemView Instructable »
Great project! May I suggest to consider using Node-RED on the Pi for further automation? I use a similar setup and let Node-RED subscribe to several messages and act accordingly (i.e. send email to cell phones in case of an alarm)
- yoh-there commented on smching's instructable Store Messages From Mosquitto MQTT Broker Into SQL DatabaseView Instructable »
Cool. I more or less did the same thing, moving mosquitto from a pi to the syn, and running MariaDb on it too. However, I use Node-RED (yes, build on node.js) as automation hub and an extremely easy flow to accomplish exactly what you did:- one node that subscribes to #- one node to transform the message into an SQL INSERT statement- one node to execute the SQL statement on the connected database. I used the mySQL node, which is compatible with MariaDb.Here is the code for the middle nodevar d = new Date();var epoch = d.getTime().toString();var outputs = [];var topic='"'+msg.topic.toString()+'"';var payload='"'+msg.payload.toString().replace(/"/g, "\"\"")+'"';var sql = "INSERT INTO simpleLog(topic,message,timeStamp) " + "VALUES …
see more » - yoh-there commented on AustinT37's instructable Sunrise Alarm Clock (Simple Arduino Project))View Instructable »
That's actually a nice device! Can I make one suggestion please? Use github for you code. Not only is it a really professional, free vehicle to share code with all versioning stuff you will ever need, it also won't screw up people's phones opening your link ;-)
- yoh-there commented on yoh-there's instructable Two axis star trackerView Instructable »
I am totally confused. Those three lines are NOT in the ino I posted in this instructable, so there is DEFINITELY something wrong!Also, you need to add Time.h, the DSC3232.h library and Lowpower to your sketchbook/libraries. TimeLib I don't know, so probably it won't work.Changing beeper and LED is fine as long as you change the defines of course :-)
- yoh-there commented on yoh-there's instructable Two axis star trackerView Instructable »
mark,First of all: cool you made it!Second: picture (or video) or it didn't happen ;-)So if it is in normal mode it tracks "something" too (you're looking at a subtle step every minute to two minutes or so), noticable if you keep it in your hand. At least that would exclude a clock problem.I suspect a problem with your EEPROM, so it reverts to the same object. To check that, set an object, then reboot. It should beep the same number of times (and the same for the ocation index).If that doesn't help, please document the changes you made (processor, pin usage, RT clock, sogtware, etc etc), as it is happily sitting next to me doing it's thing very dilligently.
- yoh-there commented on yoh-there's instructable Two axis star trackerView Instructable »
Thanks. I used this library https://github.com/JChristensen/DS3232RTC
- yoh-there followed FrancoMolina
- yoh-there commented on Tecwyn Twmffat's instructable Arduino GPRS Weather Station - Part 1View Instructable »
I completely understand why you did what you did! In fact, my own home automations works that way. But I will change it to MQTT ;-) Thing is, MQTT is really easy and completely developed for low (or high cost) bandwidth: your problem. It originates in oil pipe monitoring, using very expensive satellite links!MQTT is not WiFi bound at all, that is really a misunderstanding. It uses TCP/IP and that is it. One you have your weather station (doorbell, Solar installation, whatever!) up and running and publishing data, you can have 0, 1 or 10.000 subscribers to that data without having to worry about needless polling or the scalability of your transmitter. And the configurable dashboards provided by most broker platforms are fantastic. There are also a lot of MQTT fed dashboards available as sm…
see more » - yoh-there commented on FrancoMolina's instructable Arduino Footswitch (control your guitar amp with arduino)View Instructable »
You're welcome (Auto format)!Yes, two capacitors in series, with vastly different values, behave just like the smallest one. So it doesn't matter WHERE you put that single capacitor (amplifier or DC offset part), but one is enough and it can have the lower value of the two.
- yoh-there commented on Tecwyn Twmffat's instructable Arduino GPRS Weather Station - Part 1View Instructable »
Great job!!If I can make a kind suggestion, you might want to have a look at MQTT for your next "remote" project. Good references in i.e. Adafruit and once you have wrapped your head around the concept, you can make customized html / widget based dashboards in absolutely no time. Or even respond to the weather with devices.
- yoh-there commented on FrancoMolina's instructable Arduino Footswitch (control your guitar amp with arduino)View Instructable »
Great instructable, andyes, welcome!! If I may suggest some improvements please (very tiny):The 10uF in your DC offset part is useless. The capacitor in the output stage of the amplifier takes care of that.In the Arduino IDE, press auto fomat (ctrl-T) often. It will make your life so much easier!
- yoh-there commented on yoh-there's instructable Two Axis Star TrackerView Instructable »
Thank you! Knowledge, just on the level of "how things work", gravity and all, teaching kids about the size of things and motions. But nothing about i.e. sidereal time, math of elliptic trajectories and all. In all honesty, I borrowed all hard core math from Paul Schlyrer.
- yoh-there's instructable Two Axis Star Tracker's weekly stats:
- yoh-there commented on Steve Willson Kujur's instructable Recycle Your Dead Old Laptop BatteryView Instructable »
Great Instructable. You might want to complement the charger with a controlled discharge to check on the cells and add longevity. See for example my Instructable https://www.instructables.com/Li-Ion-Discharger
- yoh-there commented on yoh-there's instructable Two Axis Star TrackerView Instructable »
Thank you. This was a really fun project to do. I (re)learned a ton on vector math and astronomy along the way.
- yoh-there commented on diy_bloke's instructable Using the 4 pins of the ESP8266-01View Instructable »
Great minimalistic project! Now (I am just teasing a bit) some deep sleep mode and this project can be "gardenized". I would expect, though not sure, that if it is possible, a thorough reconnect to the Wifi is probably needed.
- yoh-there commented on R Jordan Kreindler's instructable Day of The Week, Calendar, Time, Humidity and Temperature: Battery Saving Sketch, LCD Shield, DHT22, RTC3231 and ArduinoView Instructable »
You're welcome! I posted the project I mentioned. https://www.instructables.com/Star-Finder/
- yoh-there followed arduino and electronics channel
- yoh-there commented on Tedd'scherB's instructable Arduino LiPo Battery WatcherView Instructable »
Great instructable! I understand you use this to avoid under-voltage while flying. If you also want to watch your battery under a tiny load, you might want to put a lot of emphasis on extreme low power usage and avoid a separate power supply, so actually self-measuring Vcc. Here is an example. Mind you, same idea, but different application.https://www.instructables.com/Lithium-Cell-Protection-in-Arduino-Projects/
- yoh-there commented on yoh-there's instructable Straightening wire and beyondView Instructable »
Indeed! Thank you for your kind comment.
- yoh-there commented on diy_bloke's instructable Simple and cheap Fuse Doctor for AttinyView Instructable »
Exactly right. And that is also why I needed that blue switch."On", as in, capacitor to RST connected: use for sketch uploading to the ATtiny85."Off", use for uploading ISP or HV sketch to the Nano.
- yoh-there commented on diy_bloke's instructable Simple and cheap Fuse Doctor for AttinyView Instructable »
I made this variant. The top side of the ZIF socket acts as a normal programmer, the bottom sie being this HV programmer. The only thing to o is to reprogram the Nano and off you go. The little switch is to enable the "do not reset" capacitor, needed for normal programming.
- yoh-there commented on R Jordan Kreindler's instructable Day of The Week, Calendar, Time, Humidity and Temperature: Battery Saving Sketch, LCD Shield, DHT22, RTC3231 and ArduinoView Instructable »
May I suggest a few additional power savers?- Consider using an arduino pro mini, as it doesn't have a usb-2-serial chip using power;- Remove all permanent-on LEDs;- Remove the power regulator from the UNO and use a LiPo 3.7 volt cell instead of 9 volts;- Use the LowPower.h library to send the processor in a deep sleep in the Loop() most of the time;- Power down the I2C interface while asleep (I will post a project that used this used shortly)Using all these techniques you can make this thing run for a year on one battery!
- yoh-there commented on tzikis's instructable Include your codebender sketch in your Instructable
I am afraid this instructable is not antirely clear. You have to use the "Embed Video" tab it seems, then it works.Choose the +Add button, then select choose video, then paste the link.
View Instructable »I am afraid this instructable is not antirely clear. You have to use the "Embed Video" tab it seems, then it works.Choose the +Add button, then select choose video, then paste the link.
- yoh-there commented on DIY Hacks and How Tos's instructable Miniature Beeping Circuit PrankView Instructable »
Nix that please. A 7555 is using much less energy, but requires higher voltage. I recreated this project using a ATtiny85 that's 99.9% of the time in sleep mode and lasts 100 days on a single 3V CR2032 coin cell. 8 year old son of a friend of mine drove the teacher bonkers but kept his mouth shut!
It is complete. Make sure you select an ATTINY85 as "Board". Just to make sure: I copy pasted the ino file into Arduino IDE 1.8.57 and it compiled without issue.