2,226 2022-03-29 14:38:53
Re: Installation photovoltaïque (20 replies, posted in FR : Aide, suggestions, discussions, ...)
2,227 2022-03-29 13:31:23
Re: Installation photovoltaïque (20 replies, posted in FR : Aide, suggestions, discussions, ...)
Bonjour,
il y a des panneaux thermiques mais on peux les câbler en photovoltaïque :
Edit :
2,228 2022-03-28 17:28:10
Re: QElectroTech howto found on the WWW (53 replies, posted in Videos howto)
2,229 2022-03-28 17:13:11
Re: Linux compile with Qt online versions (14 replies, posted in Code)
Qt6.2.4 + KF5 5.93 errors log:
2,230 2022-03-28 14:28:22
Re: mettre à jour projet après modification element (7 replies, posted in FR : Aide, suggestions, discussions, ...)
Bonjour et merci pour les compliments,
quand on édite un élément il ne faut surtout pas modifier les bornes sinon c'est mort, le nouveau symbole ne pourra remplacer les anciens éléments et donc les éléments identiques auront disparus...
2,231 2022-03-28 14:23:55
Re: Nouveautés de la version de développement 0.9 and 0.100.0 -0.100.1 (277 replies, posted in News)
FYI, I updated macOS bundle packages to :
Qt 5.15.2 -> Qt 5.15.3
KF5 5.77 -> KF5 5.92
2,232 2022-03-27 12:14:13
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Pierre
Ich baue eine neue macOS-Würfel-Demo-Anwendung:
https://download.qelectrotech.org/qet/s … er.app.zip
2,233 2022-03-26 15:24:59
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
https://download.qelectrotech.org/qet/s … test_3.zip
Fix typo to _SpaceMouseWireless_Receiver:
static const int _3DCONNEXION_SpaceMouseWireless_Receiver = 0xc62f;
2,234 2022-03-26 14:58:13
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Bonjour Laurent,
j'ai testé avec 2 appareils (SpaceMouse wireless et SpaceMouse Enterprise) sous MacOSX 12.3 et Windows10 Pro (20H2) - sans succès. Dans les deux cas, il était impossible de déplacer le cube. Même un clic dans la fenêtre du programme n'a pas donné de résultat...
Meilleures salutations,
PierreHallo Laurent,
ich habe es mit 2 Geräten (SpaceMouse wireless und SpaceMouse Enterprise) unter MacOSX 12.3 und Windows10 Pro (20H2) getestet - ohne Erfolg. In beiden Fällen ließ sich der Würfel nicht bewegen. Auch ein Klick ins Programmfenster brachte keinen Erfolg...
Beste Grüße,
Pierre
Hallo Pierre,
j'ai ajouté les souris SpaceMouse wireless et SpaceMouse Enterprise dans le code du cube.
habe ich die SpaceMouse wireless und die SpaceMouse Enterprise in den Würfelcode eingefügt.
https://download.qelectrotech.org/qet/s … test_2.zip
// from Virtual Reality Peripheral Network - vrpn_3DConnexion.C
// and https://www.3dconnexion.com/forum/viewt … p;start=15
static const int _3DCONNEXION_VENDOR_LOGITECH = 0x046d; // 1133 // Logitech (3Dconnexion is made by Logitech)
static const int _3DCONNEXION_VENDOR_3DCONNECTION = 0x256F; // 9583 // 3Dconnexion
static const int _3DCONNEXION_TRAVELER = 0xC623; // 50723
static const int _3DCONNEXION_NAVIGATOR = 0xC626; // 50726
static const int _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS = 0xc628; // 50728
static const int _3DCONNEXION_SPACEEXPLORER = 0xc627; // 50727
static const int _3DCONNEXION_SPACEMOUSE = 0xC603; // 50691
static const int _3DCONNEXION_SPACEMOUSEPRO = 0xC62B; // 50731
static const int _3DCONNEXION_SPACEBALL5000 = 0xc621; // 50721
static const int _3DCONNEXION_SPACEPILOT = 0xc625; // 50725
static const int _3DCONNEXION_SPACEPILOTPRO = 0xc629; // 50729
static const int _3DCONNEXION_SpaceMouseWireless_usb = 0xc62e;
static const int _3DCONNEXION_SpaceMouseWireless_Receiver = 0xc631;
static const int _3DCONNEXION_SpaceMouse_Enterprise = 0xc633;
bool SpaceMouseController::initialize()
{
struct hid_device_info * devs;
unsigned short current_vendor_id = 0x0;
unsigned short current_product_id = 0x0;
devs = hid_enumerate(0x0, 0x0);
m_cur_dev = devs;
while (m_cur_dev)
{
if ((m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_LOGITECH ||
m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_3DCONNECTION)
&& (m_cur_dev->product_id == _3DCONNEXION_TRAVELER ||
m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR ||
m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS ||
m_cur_dev->product_id == _3DCONNEXION_SPACEEXPLORER ||
m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSE ||
m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSEPRO ||
m_cur_dev->product_id == _3DCONNEXION_SPACEBALL5000 ||
m_cur_dev->product_id == _3DCONNEXION_SPACEPILOT ||
m_cur_dev->product_id == _3DCONNEXION_SPACEPILOTPRO ||
m_cur_dev->product_id == _3DCONNEXION_SpaceMouseWireless_usb ||
m_cur_dev->product_id == _3DCONNEXION_SpaceMouseWireless_Receiver ||
m_cur_dev->product_id == _3DCONNEXION_SpaceMouse_Enterprise))
{
//setup the values with the founded vendor id.s
current_vendor_id = m_cur_dev->vendor_id;
current_product_id = m_cur_dev->product_id;
break; //break when first comaptaible device is found.
}
m_cur_dev = m_cur_dev->next;
}
Beste Grüße,
Laurent
2,235 2022-03-26 14:28:10
Re: [AIDE] Fichier corrompu (1 replies, posted in FR : Aide, suggestions, discussions, ...)
2,236 2022-03-24 21:30:27
Re: Textual description: multiline (2 replies, posted in EN : Help, suggestions, discussions, ...)
2,237 2022-03-24 21:28:34
Re: Textual description: multiline (2 replies, posted in EN : Help, suggestions, discussions, ...)
Hello, try to add more space after 500, like this :
220 V AC 500 mA min.
2,238 2022-03-24 16:07:20
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
https://github.com/koenieee/Crossplatfo … roller.cpp
Der Code des berühmten Würfels, die unterstützten Mäuse sind eingeschränkt.
#include "SpaceMouseController.h"
// from Virtual Reality Peripheral Network - vrpn_3DConnexion.C
// and https://www.3dconnexion.com/forum/viewt … p;start=15
static const int _3DCONNEXION_VENDOR_LOGITECH = 0x046d; // 1133 // Logitech (3Dconnexion is made by Logitech)
static const int _3DCONNEXION_VENDOR_3DCONNECTION = 0x256F; // 9583 // 3Dconnexion
static const int _3DCONNEXION_TRAVELER = 0xC623; // 50723
static const int _3DCONNEXION_NAVIGATOR = 0xC626; // 50726
static const int _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS = 0xc628; // 50728
static const int _3DCONNEXION_SPACEEXPLORER = 0xc627; // 50727
static const int _3DCONNEXION_SPACEMOUSE = 0xC603; // 50691
static const int _3DCONNEXION_SPACEMOUSEPRO = 0xC62B; // 50731
static const int _3DCONNEXION_SPACEBALL5000 = 0xc621; // 50721
static const int _3DCONNEXION_SPACEPILOT = 0xc625; // 50725
static const int _3DCONNEXION_SPACEPILOTPRO = 0xc629; // 50729if ((m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_LOGITECH ||
m_cur_dev->vendor_id == _3DCONNEXION_VENDOR_3DCONNECTION)
&& (m_cur_dev->product_id == _3DCONNEXION_TRAVELER ||
m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR ||
m_cur_dev->product_id == _3DCONNEXION_NAVIGATOR_FOR_NOTEBOOKS ||
m_cur_dev->product_id == _3DCONNEXION_SPACEEXPLORER ||
m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSE ||
m_cur_dev->product_id == _3DCONNEXION_SPACEMOUSEPRO ||
m_cur_dev->product_id == _3DCONNEXION_SPACEBALL5000 ||
m_cur_dev->product_id == _3DCONNEXION_SPACEPILOT ||
m_cur_dev->product_id == _3DCONNEXION_SPACEPILOTPRO))
{
//setup the values with the founded vendor id.s
current_vendor_id = m_cur_dev->vendor_id;
current_product_id = m_cur_dev->product_id;break; //break when first comaptaible device is found.
https://github.com/FreeCAD/FreeCAD/blob … 32.cpp#L85
/*
List of all devices
https://www.3dconnexion.com/nc/service/ … ndows.html
Supported:
SpacePilot: USB\0x046d:0xc625
SpaceExplorer: USB\0x046d:0xc627
SpaceMouse Wireless (cabled): USB\0x256f:0xc62e
SpaceMouse Wireless Receiver: USB\0x256f:0xc62f
SpaceMouse Pro Wireless (cabled): USB\0x256d:0xc631
SpaceMouse Pro Wireless Receiver: USB\0x256f:0xc632
Supported (but works differently):
SpaceMouse Plus USB: USB\0x046d:0xc603
SpaceMouse Plus XT USB: USB\0x046d:0xc603
Unknown status:
SpaceNavigator: USB\0x046d:0xc626
SpaceNavigator for Notebooks: USB\0x046d:0xc628
SpacePilot Pro: USB\0x046d:0xc629
SpaceMouse Enterprise: USB\0x256f:0xc633
Not yet supported:
SpaceMouse Compact: USB\0x256f:0xc635
Not supported:
CadMan: USB\0x046d:0xc605
SpaceMouse Classic USB: USB\0x046d:0xc606
SpaceBall 5000 USB: USB\0x046d:0xc621
SpaceTraveler: USB\0x046d:0xc623
SpaceMouse Pro: USB\0x046d:0xc62b
CadMouse: USB\0x256f:0xc650
CadMouse Pro Wireless: USB\0x256f:0xc654
CadMouse Pro Wireless Left: USB\0x256f:0xc657
CadMouse Wireless: USB\0x256f:0xc651
Universal Receiver: USB\0x256f:0xc652
*/enum e3dconnexion_pid {
eSpaceMousePlusXT = 0xc603,
eSpacePilot = 0xc625,
eSpaceNavigator = 0xc626,
eSpaceExplorer = 0xc627,
eSpaceNavigatorForNotebooks = 0xc628,
eSpacePilotPRO = 0xc629,
eSpaceMouseWireless = 0xc62e,
eSpaceMouseWirelessReceiver = 0xc62f,
eSpaceMousePROWireless = 0xc631,
eSpaceMousePROWirelessReceiver = 0xc632,
eSpaceMouseEnterprise = 0xc633,
eSpaceMouseCompact = 0xc635
2,239 2022-03-24 15:58:56
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Pierre,
c'est juste cette demo que j'ai envoyé le fameux cube :
https://qelectrotech.org/forum/viewtopi … 945#p15945
es ist nur diese Demo, dass ich den berühmten Würfel geschickt habe:
Beste Grüße,
Laurent
2,240 2022-03-22 23:22:53
Re: Import DXF into QElectrotech problems (26 replies, posted in Import DXF)
You don't need choose DB to proces, only if you want to edit and hack the DB to do batch processing.
Like changing color parameter, typo, some text, etc and create different elements without redraw some thing.
2,241 2022-03-22 23:14:46
Re: scaling-factor for Drawing of front view (30 replies, posted in Elements)
PS:
Das sieht schon echt Professionell aus, dafür das es "nur" V 0.5 war..
Software ist nichts ohne talentierte Menschen, die sie nutzen und ihre Lücken mit genialen Tricks füllen.
Und das Ergebnis wird auf der anderen Seite mittelmäßig sein, wenn man als Anfänger nicht allzu geschickt mit einer sehr umfassenden, leistungsstarken Software umgeht, die ein wenig zu komplex ist und oft ein kleines Vermögen kostet ......
Software is nothing without talented people who exploit it and fill its gaps with brilliant tricks.
And the result will be on the other hand mediocre with a beginner user not too skilful on a very complete software, powerful, a little too complex and also often costing a small fortune .....
2,242 2022-03-18 23:12:32
Re: Import DXF into QElectrotech problems (26 replies, posted in Import DXF)
For such a simple design, it's easier to do it yourself in the Elements editor.
2,243 2022-03-18 22:48:54
Re: Import DXF into QElectrotech problems (26 replies, posted in Import DXF)
Voila.
2,244 2022-03-18 22:36:17
Re: Import DXF into QElectrotech problems (26 replies, posted in Import DXF)
You could send your DXF?
2,245 2022-03-18 21:46:01
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
J'ai essayé FreeCad et Calligra (old Koffice) qui ont deux façons différentes de gérer la souris 3D. D'abord sur ma machine Debian puis sur mon Laptop sur la session Windows 10 (21H2).
Sous Linux avec FreeCad c'est la librairie Spacenav, sous Windows ils se servent des driver's de 3DxWare, le support est mieux aboutit sous Windows, gestion de l’écran (driver's Logitech), menus, etc, je trouve que la souris est plus facile à prendre en main que sous Linux.
Sous Calligra (sheets) programme 2D, sous Linux la souris 3D permet le zoom et le déplacement, meme si on est vite perdu, quand sous Windows je n'ai pas remarqué grand chose à part le scroll de la page.
Ich habe FreeCad und Calligra (old Koffice) ausprobiert, die zwei verschiedene Möglichkeiten haben, die 3D-Maus zu verwalten. Zuerst auf meinem Debian-Rechner und dann auf meinem Laptop in der Windows 10-Sitzung (21H2).
Unter Linux mit FreeCad ist es die Spacenav Bibliothek, unter Windows verwenden sie die 3DxWare Treiber, die Unterstützung ist unter Windows besser, Bildschirmverwaltung (Logitech Treiber), Menüs, etc, ich finde, dass die Maus einfacher zu erlernen ist als unter Linux.
Unter Calligra (sheets) ist das Programm 2D, unter Linux ermöglicht die 3D-Maus das Zoomen und Verschieben, auch wenn man sich schnell verirrt, während ich unter Windows nicht viel bemerkt habe, außer dem Scrollen der Seite.
https://github.com/FreeCAD/FreeCAD/tree … Dconnexion
https://github.com/KDE/calligra/tree/ma … enavigator
2,246 2022-03-18 21:33:14
Re: Import DXF into QElectrotech problems (26 replies, posted in Import DXF)
Hello,
Path to custom collection need to be C:\Users\eangel\AppData\Roaming\qet\elements\
If you have installed QET by installer.
2,247 2022-03-18 17:50:50
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Hallo Pierre,
as tu essayé de débrancher et rebrancher la souris et relancer le cube?
Les DLL et autres libs doivent rester dans le même dossier que l’exécutable.
Merci quand même d’avoir essayé de ton coté, Windows 64 bits?
Meilleures salutations,
Laurent
Hast du versucht, die Maus aus- und wieder einzustecken und den Würfel neu zu starten?
DLLs und andere Libs müssen im selben Ordner wie die ausführbare Datei bleiben.
Danke, dass du es versucht hast, Windows 64 bits?
Mit besten Grüßen,
Laurent
2,248 2022-03-18 16:24:46
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
La démo que j'ai empaqueté fonctionne sous Windows même avec les driver's 3DxWare 10 for Windows (64-bit) 10.6.4 installés.
Les exemples de 3DxWare sont bien conçus pour maîtriser la bestiole pour un novice comme moi.
Die Demo, die ich gepackt habe, läuft unter Windows sogar mit installierten 3DxWare 10 for Windows (64-bit) 10.6.4 Treibern.
Die 3DxWare-Beispiele sind gut gestaltet, so dass auch ein Neuling wie ich mit dem Tierchen zurechtkommt.
2,249 2022-03-18 10:28:48
Re: background color: black/white (4 replies, posted in EN : Help, suggestions, discussions, ...)
https://qelectrotech.org/forum/viewtopi … 9416#p9416
You are an example in examples/styles/ folder.
2,250 2022-03-18 10:27:01
Re: Raster anzeigen (33 replies, posted in DE : Hilfe, Vorschläge, Unterhaltungen...)
Sur macOS ça va être compliqué car je l'émule avec KVM Qemu (VM) donc même avec les driver's officiel pour la space pilot pro la souris ne fonctionne pas.
J'ai quand même fait un paquet pour que tu puisses tester.
Unter MacOS wird es schwierig, da ich die Maus mit KVM Qemu emuliere (VM), so dass sie auch mit den offiziellen Treibern für den Space Pilot Pro nicht funktioniert.
Ich habe trotzdem ein Paket gemacht, damit du es ausprobieren kannst.
