Couldn’t tell you, I don’t know what AL is. Dynamics is actually a bunch of different enterprise apps loosely lashed together with twine, so X++ might only be for Finance & Operations.
- 1 Post
- 27 Comments
Fun fact, making extensions for this requires you to learn a new language called X++ that is based on .net framework 4.7. Development is done only on azure-hosted VMs that contain the application code and sql server and web host and visual studio with the special X++ build tools, all on one host that runs like shit at your expense.
I still cannot believe half of you maroons voted for this. So now doge has a serious .gov DNS entry.
I mean that literally, btw. I cannot believe half of you voted for this, it’s impossible. If it turns out there really was election fraud this time I will be completely unshocked.
Heavybell@lemmy.worldto Selfhosted@lemmy.world•Tell me why I shouldn't use btrfsEnglish1·7 months agoI have research to do, I see.
Heavybell@lemmy.worldto Selfhosted@lemmy.world•Tell me why I shouldn't use btrfsEnglish2·7 months agoCan you elaborate for the curious among us?
If the only tool you have is a hammer, everything looks like a nail.
That’s the only thing I can think to answer your question. There are some problems that are best solved with other tools, like text parsing for example you might want to call out to some code written in a functional language.
Awesome, gonna bookmark those for later. Thanks!
No problem. The one I used is an ESP32 DevKitC, and you can find info about it on Espressif’s site, or just google the pinout diagram. For basic tasks it should be all you need since it has lots of binary pins, two ADC channels, two DAC channels, realtime clock, special pins for waking it from deep sleep, two I2C, etc. Though if you want to do video input you probably want something else, I’m learning.
Anyway, if you can spare the money to get one just to toy with I’d definitely recommend it.
Okay so that is an issue with the ESP32, sure. There are a lot of variants.
So from what I can tell, the ESP32 is the SoC chip and what you usually get is a dev board which has that plus a bunch of power regulation bits, a USB connector and UART so you can easily program it, etc. That part varies mostly by pinout. I.e. Same features, different pin location.
There are also variants of the chip, but those are usually more costly and will be named things like ESP32-S2.
Every one I’ve seen can run off 5v or 3.3v and uses the latter for logic, so if you got yourself an arduino kit and then just bought an ESP32 dev board it would almost certainly work with whatever is in the kit. Both are microcontrollers, not microprocessors, so they tend not to have OSes or screens.
Oh interesting. Can you link the detector? I could use that for something else.
When you put mail in the box, unless it’s a REALLY small bit of mail it’ll land so it obscures at least one of the proximity sensors. This then sets the ‘got mail’ statue to ‘on’ in Home Assistant. From there, I have HA set up to send me notifications to go and check the mail.
Before you say so, yes this was a lot of work for something so trivial, but it was fun. Plus I actually get so little physical mail that I can forget to check the mailbox for weeks at a time. Which would be very bad if I got some actually important mail. And actually, that exact thing happened just days after I finished installing the thing. So it has already potentially saved me from a fine.
I’m sorry to say I don’t. :/ You can grab dev boards off aliexpress for cheap, and they’re really easy to play with. Just connect the to your PC via USB to load your initial ESPHome script, and they spring to life. From there you can do basic testing, since they’ll get power from the USB. It’s just a matter of what you decide you want to hook up to them after that. I assume you’re looking for like a hobby kit, like you can get for arduino boards? Something that comes with a bunch of LEDs and I2C components you can fiddle with? Unfortunately I don’t know of any that come with ESP32 dev boards, but I’ll admit I’ve not looked. Sorry.
This is true, but compared to the prevailing alternative I’ll take it. Unless there’s a viable FOSS alternative for whatever software we’re talking about at the time, of course. :P
Heavybell@lemmy.worldto Selfhosted@lemmy.world•What do I need to separate devices to its own no-internet network and still be able to communicate with within the house and outside? (Diagram provided)English6·1 year agoI know vlans is the answer, but I don’t know how to set it up. I really need to do this with my own network some day. There must be an OPNsense guide for this, I know it…
LetsEncrypt can hand out wildcard certs if you are able to add TXT records to your domain, if that helps any.I realised this was a stupid comment that doesn’t help any.
I just noticed lemmy didn’t like the #include statement because it uses angle brackets. I tried to update it but it doesn’t look right, so I’m going to change it to quotes which should work the same, I believe. I’m not a C expert, I usually code in C#.
Discord push-to-talk. :P
Here’s the code I wrote:
#include "Keyboard.h" const char FUNCTION_F14 = 0xF1; int down = 0; void setup() { // make pin 2 an input and turn on the // pullup resistor so it goes high unless // connected to ground: pinMode(2, INPUT_PULLUP); // initialize control over the keyboard: Keyboard.begin(); } void loop() { int nowDown = digitalRead(2) == LOW; if (down != nowDown) { down = nowDown; if (down) { Keyboard.press(FUNCTION_F14); } else { Keyboard.release(FUNCTION_F14); } } }
Note that the #include was meant to use angle brackets, but Lemmy ate them. If this doesn’t work, change it back to angle brackets around the Keyboard.h instead of quotes.
Also, the parts I used:
- https://vi.aliexpress.com/item/1005003583458697.html
- https://vi.aliexpress.com/item/32846843498.html
I wired it up like in the photo, and just laid it on a bed of hot glue so the USB port sticks out the hole. I had intended to get a mini USB extension cable inside the pedal, but the one I ordered turned up defective, and this worked out just fine.
Yeah, I admitted in another comment that it may only be for Dynamics F&O.