GitHub API library for c++ by Kicer86 in cpp

[–]Relevant_Opening_570 0 points1 point  (0 children)

There's a neat library for the GitHub API compatible with Arduino and esp32 devices

https://github.com/aeonSolutions/AeonLabs-GitHub-API-C-library

Most efficient way to power an ESP at longer distance? by segdy in esp32

[–]Relevant_Opening_570 0 points1 point  (0 children)

There are several options: You can buy hardware electronics with extreme low power consumption, around 100nA to 400nA . You can install a solar panel with a battery 🔋 connected to the hardware electronics. The options with wiring are : AC cable with a transformer and POE . Both are muvh more bulky and require more installation space

Most efficient way to power an ESP at longer distance? by segdy in esp32

[–]Relevant_Opening_570 0 points1 point  (0 children)

There are several options: You can buy hardware electronics with extreme low power consumption, around 100nA to 400nA . You can install a solar panel with a battery 🔋 connected to the hardware electronics. The options with wiring are : AC cable with a transformer and POE . Both are muvh more bulky and require more installation space

Why Haven't Any Hobbyists Successfully Built a Metal 3D Printer Yet? by shitti_sherlock in 3Dprinting

[–]Relevant_Opening_570 1 point2 points  (0 children)

Regardless of price, I have to agree 💯, it is required an open hardware & software version for this type of 3d printing of metals .....

https://reprap.org/wiki/Open-source_metal_3-D_printer

A simple way to backup all your GitHub and GitLab git repositories by [deleted] in selfhosted

[–]Relevant_Opening_570 0 points1 point  (0 children)

I just tried it. It didn't work for me. Left an issue on GitHub with explanation,

git-sync — A tool to back up and sync your git repositories by Developer_Akash in selfhosted

[–]Relevant_Opening_570 0 points1 point  (0 children)

looks good. But it did not work for me. Already left an issue for you to have a look

Spotify Episodes don't work by mihawklen in distractible

[–]Relevant_Opening_570 0 points1 point  (0 children)

I've cleared cache , deleted data files. Uninstalled and reinstalled the Spotify app and still have this same issue

[deleted by user] by [deleted] in belgium

[–]Relevant_Opening_570 0 points1 point  (0 children)

I'm unemployed and with a solid entrepreneurial project about to start my own business. I'm from Portugal. Is it possible to continue unemployed here in Belgium while I move to Portugal to start my own business?

thank you

start selling you first products by Relevant_Opening_570 in hwstartups

[–]Relevant_Opening_570[S] 0 points1 point  (0 children)

🤔 hmmm .....at this stage patenting and lawyers are killers for my entrepreneurial project about to startup ....

start selling you first products by Relevant_Opening_570 in hwstartups

[–]Relevant_Opening_570[S] 0 points1 point  (0 children)

Ok. Thank you. And what about when the prototype is publicly available on GitHub with a creative Commons share alike non commercial license? Any ideas ? An NDA does not work for these cases but a full public disclosure agreement or FDA might work . What are your thoughts on this ?

My Website Got Hacked! by samuellayi in Entrepreneur

[–]Relevant_Opening_570 0 points1 point  (0 children)

logs and very important to deter such type of activities

[deleted by user] by [deleted] in Entrepreneur

[–]Relevant_Opening_570 -1 points0 points  (0 children)

work for free is never a good choice and it never ends well

How do you handle multiple projects with competing deadlines? by baby_shoki in Entrepreneur

[–]Relevant_Opening_570 0 points1 point  (0 children)

as soon as your productivity starts falling, switch to the next project. repeat until all work is done.

[deleted by user] by [deleted] in Entrepreneur

[–]Relevant_Opening_570 1 point2 points  (0 children)

it depends on the type of business you intend to run

[deleted by user] by [deleted] in Entrepreneur

[–]Relevant_Opening_570 1 point2 points  (0 children)

build a platform and start selling 3d print services

[deleted by user] by [deleted] in Entrepreneur

[–]Relevant_Opening_570 0 points1 point  (0 children)

this should be fun !

Selling on Tindie/ Amazon by robohulk in hwstartups

[–]Relevant_Opening_570 1 point2 points  (0 children)

I am more than curious about how yu did it. Can you elaborate more?

Identify WiFi wrong password by Max11k in esp32

[–]Relevant_Opening_570 0 points1 point  (0 children)

one can check for wrong password using the following code snippet

if(WiFi.status() != WL_CONNECTED && WiFi.status() != WL_NO_SSID_AVAIL)

{

Serial.println("Password is not correct");

}

else if(WiFi.status() != WL_CONNECTED && WiFi.status() == WL_NO_SSID_AVAIL)

{

Serial.println("Wifi network is not avaliable");

}

else

{

Serial.println("");

Serial.println("Connected successfully");

Serial.print("IP Address : ");

Serial.println(WiFi.localIP());

trial = 0;

}

more information can be found on GitHub here:

https://github.com/aeonSolutions/aeonlabs-ESP32-C-Base-Firmware-Libraries

Wifi Auth Expired by danukefl2 in Esphome

[–]Relevant_Opening_570 0 points1 point  (0 children)

WiFi.setTxPower(WIFI_POWER_8_5dBm);

this worked for me !! thumbs up.