Matthias Melcher Introduces Quicklook Of Stl-files For Mac

Posted on by  admin
Matthias Melcher Introduces Quicklook Of Stl-files For Mac 5,0/5 4544 reviews

Thingiverse user matthiasm and 3Druck.com reader provide a QuickLook extension for Mac OSX Mavericks. Who hasn’t come across the problem of having saved so many STL files in a folder, unable to allocate them. Apple offers a QuickLook solution for many data formats, however unfortunately not for STL files.

Hence Matthias Melcher has programmed an extension, which is able to illustrate STL files as 3D models in the data folder itself. Pushing the space key takes you to a larger preview of the 3D object. Our editorial team has already installed the software and is thrilled about it! Is available via. 3D models are also displayed as QuickLook in folders: Thank you Matthias for your hint and the fantastic software! (c) 3Druck.com.

This jig was made from a piece of brass tube, a leur lock fitting, some tubing, and a 22ga blunt dispensing needle. It was mounted in a cheap USB microscope holder (available on eBay or Amazon) and hooked to a vacuum pump that I already had. There are many more complicated versions of this rig on the internet, but this simple setup worked fine for me. Finally, I baked it in a toaster oven that I got for free at a garage sale, and a.

Everything works great. I consider this project a success. All thats left to do now is to 3D print a replacement for the plastic 'plug' that covers the hole in the case. Finally, a little application that uses the method mentioned in an earlier post to enable the board when the 'modem' port is opened. Thermal Early designs used a linear regulator to supply 3.3v from the Newton's battery voltage.

It became pretty obvious that a linear regulator would get too hot, and so I changed it for a. I wanted to do a real world test.

The WiReach specs say that it can draw around 350mA peak during transmit. I modified the Thumb sample code into a program that would output a continuous stream of 25kB packets. I taped a thermocouple to the regulator and ran the test for an hour or so.

The results were promising. From room temperature, the regulator went from 77.4F to a high of 85.1F.

This satisfies me that in my normal use the board will not overheat. A once told me: 'People might be using such a Newton on a camp site close to Death Valley in August. Before you release such a circuit into the wild, you should put the assembly into the baking oven at 60 degrees centigrade and see what happens.' Good advise, but I don't think I'll be performing that test. I just can't imagine putting a Newton in a oven for any amount of time.

This test is anecdotal at best, I guess. Was the WiReach module anywhere near its peak transmit power or current draw? I don't know. At 115200bps, I'm not sure that the Newton can saturate the WiFi module such that it would need to draw its maximum. Physical I found one other minor issue with the physical design.

I intentionally pushed the module as close to the edge of the Newton as possible- into the space where a telephone jack would have been for an internal modem. The module is large and getting it in just the right place and keeping the board within a 5cm square took some trial and error. Also, I wanted the antenna area as close to the edge of the case as possible. Well this made for one unintended consequence- the 'plug' that covers the hole likely won't fit, and it will interfere with the WiReach antenna connector and board. It isn't the end of the world really - I intend to 3D print a new plug with a little more clearance, and maybe an embossed WiFi logo so you can tell from the outside that there's a WiFi card installed.

I soldered leads to a 1-gate logic inverter. This wasn't easy because the part is so small. Then connect it to 3.3v, GND, and the RTS line coming out of the WiReach. Then I cut the RTS trace on the bottom of the board. I connected the output of the inverter to the input of the line driver IC. Some Kapton tape holds it all in place.

It is a really terrible hack, but it works. Hardware flow control works as expected, now.

I'm going to design a version 1.1 of the board that includes the inverter. Also I can remove the extra GPIO/Reset stuff since the 'power good/reset' circuit works. You need to send a few specific commands to configure the WiReach module.

The most important is AT+iWANS=1 which tells the WiReach that the WiFi network is the WAN subnet. Also you need to configure a username and password (which matches the PPP configuration on the Newton.) AT+iRAU and AT+RAP are the commands you use to set the username and password. And of course you'll need to connect to your network using: AT+iWLSI=MyWiFi AT+iWST0=4 AT+iWPP0= I use PT-100 to configure the module. Then a Serial Internet configuration with a script. The script is simple. First, it pauses for a few seconds to give the module time to power on.

Second, it sends the at+iSPPP:0 command to start the PPP server. Finally, it waits for the OK. How Does it Work? My goals when I started this were:. The case had to close and everything had to be fully internal. Find an antenna and antenna placement that would work without modifying the case or the shielding. Enough range to reach my router from my couch.

Connecting my Newton to a WPA2 network. In all, despite the flow control thing, I'm pretty happy with the end result. The project meets my requirements. I'm trying to decide if I want to do a v1.1 board with corrected flow control signals. Up till now, I have been following: directly calling the ROM functions to toggle SerPortSel. The only issue with this approach is that the OS also toggles these signals when a port is opened. This means you have to configure the signals after the serial port is opened.

Wouldn't it be great if you could tell NewtonOS that you wanted SerPortSel to be 'set to internal' when you open Serial0 or Serial3? The trick is the functions TVotagerPlatform::SetSubsystemPower and its twin TVotagerPlatform::GetSubsystemPower. These functions involve a bitmask that tells the Newton which power rails a subsystem requires. It is a 8-bit mask but is set/returned as a ULong.

By looking at the disassembly of TVoyagerPlatform::PowerOnSubsystem, I have found the following flags: #define kNeedsPowerOnSrc5v 0x01 #define kNeedsPowerOnSrc12v 0x02 #define kNeedsPowerOnIC5v 0x08 #define kNeedsPowerOnDMA 0x10 #define kSetPortSelectExternal 0x20 The constant names are my own invention. The key one is kSetPortSelectExternal. When this bit is set, the NewtonOS conigures the SerPortSel LOW, indicating an external device connected to the interconnect port. When this bit is clear, it configures the SerPortSel HIGH, indicating that the internal serial slot will use the port. These functions need an index or ID of the subsystem involved.

Again, looking at the disassembly, you find the relevant index. There may be more, but the ones involving the serial port are: #define kSerial0SubsystemIndex 1 #define kSerial3SubsystemIndex 3 Again, the constant names are invented. So some simple pseudocode to tell NewtonOS 'when you open 'mdem' set SerPortSel3 to HIGH' might be: theVotagerPlatform-GetSubsystemPower(3, &flag); flag &= 0x20; // clear the bit, setting internal theVotagerPlatform-SetSubsystemPower(3, flag); When the serial port is opened in software, the NewtonOS reads the bitmask and enables the proper voltage supplies and sets the SerPortSel apporopriately. When the port is closed, the GPIO line is returned to its default state. Note for Serial0, the default state is 'internal' (HIGH) until you open the port, as this disables the LTC1323 (used on the external port), probably to save power.

These settings are reset on reboot, which I think is probably for the best. You could always have a Pacakge that sets the flags on boot. Currently, this is what I consider the 'right way' or at least the 'best known way' to use the serial port select signal for the internal slot.

It is much better than manually toggling the signal with the SerialPortXLineDriverConfig functions. I can't ever seem to get the flow control lines right. The current prototype only works with flow control disabled. Says that the Serial3 signals are'ModemNotCTS' and 'ModemNotRTS'. The WiReach docs also use inverted signals 'nCTS' and 'nRTS'.

So I connected them up to each other thinking that they're all using the same signaling logic. But I was wrong, and I think the n2 docs are too. It seems that the Newton's CTS line is not inverted. This can be verified with a loopback.

When RX-TX are connected and RTS-CTS are connected, you will not get an echo when hardware flow control is enabled. Similarly, if you connect CTS to GND, you won't get an echo. If you connect CTS to 3v, you get the echo.

So this tells me that CTS is not inverted.: RTS and CTS are normally held high (TTL 1). When high, no request (RTS) has been made, and no permission (CTS) has been granted. When the PC is ready to send data, it brings TTL RTS low. The MCU sees this.

When the MCU is ready to receive data, it brings TTL CTS low. The PC sends data as long as TTL CTS is low, and stops when the MCU takes TTL CTS high. The opposite seems to be happening no the Serial3 signal. So what next? Well the board works fine without hardware flow control. But I'm going to try and ' a 1 gate inverter onto the board on the RTS line coming from the WiReach.

It won't be pretty, but it should work. (Sorta) I finally got all the parts together to assemble the project. I started by populating the 3.3v regualtor section of the board, just to make sure it works. It did, a nice stable 3.29v.

I then proceeded to blow up the regulator somehow. I was trying to load it with a few ohms of load to simulate a 300mA draw.

But that shouldn't destroy the thing. Maybe I connected something incorrectly or zapped it with static. Luckly, I had enough parts to try again. Again I populated the 3.3v regulator first, and checked the output. Again, a nice output voltage.

This time I threw caution to the wind and just populated the rest of the board. At first I thought the thing was not working.

But then I tried disabling flow control, and moudle responded. This means a few things:. Power regulation seems to work as expected. The auto reset (which holds the module in reset until power-good) seems to work. The buffer IC is forwarding the RX and TX lines between the Newton and the module properly.

My track record for screwing up hardware flow control may be unbroken. (Sadly) Now there are a few things going on here, so maybe the hardware control isn't broken. First, when PT-100 connects, it turns off the SerPortSel3 signal. This powers down the module. PT-100 then reports a Buffer Under-run.

I can then manually toggle SerPortSel3 and communicate with the module. I am wondering if the fact that the module is powered off during the process of opening the serial port does something to hardware flow control. Maybe it gets things in an inconsistent state.

I am not sure. I haven't tried using NIE yet, but I was able to connect to my WiFi network (WPA2) and ping my router using the AT+i command set. Some updates on the project:. I was unhappy with the linear regulator's heat performance, so I changed to a switching module. This increased the number of passive components a bit.

I found a, so the whole thing still fits nicely. The PCB layout is tricky for switching regulators, but I did my best to follow the guidelines in the data sheet, so I'm hopeful it will work as expected. Rather than making a separate breakout board to prototype the regulator, I just went ahead and ordered the PCBs for the whole project. I'll reflow the regulator components first and test the circuit out before reflowing again to add the WiReach and additional components. Mathias suggested a buffer to translate between 3.3v and 5v signals, but this is all 3.3v logic.

I did add a buffer for another reason- the fact that the module is powered separately from the Newton means that the Newton can be pushing 3.3v logic signals when the module is powered off. I checked with ConnectOne and the module is tolerant to this, but it wastes power and possibly causes problems with an inconsistent state on power-up. By using a buffer, the logic signals are kept at the same voltage level as the module itself. I chose which means the buffer can be at Vcc=0 and still tolerate signals coming from the Newton. I have an idea for the reset circuit.

The power regulator has a 'Power Good' output that holds to ground until the power regulation hits the target voltage. The idea is to tie this to the WiReach module's reset pin.

This should hold the module in reset until the power regulator is fully online. This only costs one extra pull-up resistor. In case this strategy doesn't work, I've got an alternate setup where the Newton's extra GPIO can trigger the reset. The GPIO is looped through the buffer, again to keep the logic at the same voltage as the WiReach supply. A solder jumper selects which reset circuit you wish to use. The WiReach reset pin is an open-drain, and can be pulled low by the module. I added a 200 ohm resistor inline to limit the current should the Newton be outputting a 3.3v signal while the module is pulling down its own reset signal.

Switched the test pads to just pads rather than thru-holes. Moved them near the edge of the board so I can clip on with alligator clips to test. Exposed the reset and MSEL signals as test pads on the back of the board as well.

These can be used to reset the module into rescue mode if necessary. Some of the routing is a little odd but I tried to keep the jumpers on the bottom layer as short as possible. This resulted in few extra vias. I wanted to keep the ground plane as intact as possible. I'm still paranoid about the hole locations and the physical design fitting properly, so I 3D printed another mockup to test the fit. Seems to work well. Hole placement is still iffy.

I'd love to know the real measurements. Each time I tweak it a little, but never seem to be happy, so I'm finally just going with it. So the board is off at being built, assuming it passes their error checks. Update: it passed error checks and is being manufactured I also ordered two solder stencils from OSHStencils. I also built a reflow toaster out of an old toaster oven I got for free from a garage sale. All that's left is to get some solder paste. I also want to build a little pick and place jig to help place the small components.

Hopefully this will all work in the end. And then there's still the antenna to figure out. Becomes #define SessionCache ((SessionRow.)NewtonGlobal(SYM(SessionCache),sizeof(SessionRow).SESSIONROWS)) Ugly, but it should work. I am able to compile, link, and package the CyaSSL library as a.ntkc file.

My 'test' file tries and calls a few of the CyaSSL function so that the linker will find them in the dependency tree. But in practice there may be more static globals to tackle. Other considerations Besides the globals issue, there needs to be some glue code that allows NewtonScript to call CyaSSL and pass data back and forth. NIE doesn't support the traditional concept of a 'socket'. On the plus side, CyaSSL has an abstracted I/O architecture.

You can define functions for input and output instead of the default socket implementation. Also, its quite likely that there are many more compiling & linking issues hidden. When the library is used in practice, there will be more parts of the library in the dependency tree, and we may find new errors or static globals.

An Exercise for the Reader I think that CyaSSL is a good choice for the Newton. If you're interested in learning more about CyaSSL, here are some good starting points. I don't know how many places these global variables might pop up in the CyaSSL code.

Also I'm not an expert on NewtonScript/NIE Endpoints and what well designed 'glue' might look like. Could it be done? It is more work than I want to tackle with this little digression. While I may dabble with this a little more, I don't think I'll see it through to completion. I invite someone else to pick up the ball run with it.

You can find me on if you have any questions about what I have tried up till this point. I'm happy to help out, but given the weird encryption export laws in the USA, I don't want to post any code directly.

I have been triangulating on a final PCB design for an internal WiReach card. I am not an EE, so the design is hobbiest-grade at best. Here is the thinking behind some of what you see in the picture above: 1.

Board size is less than 5cm x 5cm in order to print it at at a reasonable cost. 10 of them on 0.8mm board should be around $15. Hole locations were determined based on trial and error.

I have a 3D printer, so I printed 6 or so iterations of the board and then checked the fit and hole locations. If someone has better dimensions for the location of the mounting points, please let me know. Screw size seems to be #1-72. Length is 3/8'. Shannon from NewtonTalk was selling an original SER-001 on eBay.

I have a SER-001 too, but I've lost the screws. Shannon was nice enough to measure the screws for me, and confirm that the head diameter is 0.136. This seems consistant with McMaster part number, but I would love to find an flat undercut version of this screw.

Unfortunately, it doesn't seem to be available in this length. At least now I can get some screws for both my SER-001 and this project! Eagle PCB tends to want to route things across the mounting holes as plated vias. Since these holes will need to be countersunk, I didn't want to rely on these holes. Drilling the countersink will break the plated thru hole. Hence a couple of extra vias are nearby to make sure there isn't an issue. I trimed down one side of the board to give a little more clearance for the microphone and power switch wires.

This isn't strictly necessary, since the wires have their own recess in the stylus assembly. Since I don't know how/where I'm going to route the antenna yet, but I figured a little extra room wouldn't hurt. I added a 500mA PTC Fuse, since the battery leads are unfused.

While there's not going to be any external connector to short out, I figured this was a safe play. I chose the Texas Instruments REG103 regulator, mainly because I was able to get a handful cheaply on eBay and it has a shutdown input. Also its pretty low profile and won't interfere with mainboard components. The shutdown signal will will be driven by SerPortSel3. SerPortSel3 is normally low, keeping the regulator off. When toggled high in software the regulator will come online and power the WiReach.

This way, the module will only be powered when in use. This regulator can handle 500mA. At peak, the WiReach should only use 60% of this amount. The large copper planes on the top side are for battery power, ground and 3.3v. The intent to help cool the regulator.

I'm not sure what the thermal characteristics will be in practice. Power and ground traces are 30 mils wide, which is more than double what the online trace width calulators say you need for 500mA. Headers for debugging give access to the power lines on one side and the communication lines on the other. In practice, I intend to tape over the pads so that there's no possibility of a short. (I may go a little crazy with Kapton tape just to make sure the board doens't flex into something and cause a short to the mainboard.) 8.

The ground plane on the backside is only broken by a few signal jumpers where routing couldn't be done on the top side. My next steps are to verify the connections one more time to make sure everything is correct, and then send the board off to be made. In the interem, I'm going to build a reflow toaster oven.

All of this work on the internal serial slot is in support of my WiFi module project. The goal is to build an internal interface to a module. I like this module for a few reasons:. It supports modern wireless networking, such as WPA2. There isn't any native way for the Newton to connect to a modern WiFi network, and likely there never will be. It supports a PPP server. This means that the module can appear to Newton Internet Enabler (NIE) as a PPP dialup server.

In effect, you can 'dial up' to a wifi network. It supports an AT command set for configuration- so you can send a few commands from PT-100 or using the script utility in NIE to configure the module. The Newton's internal 3.3v regulator is not sufficient to run the module. This was expected, but it does mean that any design will have to have a 3.3v regulator that runs off of the battery supply lines. Luckily the internal serial slot does provide access directly to the battery. Hardware flow control seems to work. I have a history of messing up the pinout, so I'l probably have a solder jumper that you can cut if you want to disable hardware flow control.

There's a giant capacitor right where I would want the module to sit. I think that that there is enough clearance in the area, but I'm starting to be concerned about how this will all fit. gpSerPortSel - the serial port 0 selection signal. When high, the internal serial driver is disabled, leaving Serial0 available for the internal slot. PortSelect - the serial port 3. When high, Serial3 is available for the internal slot. When low, Serial3 is dedicated for the external interconnect port.

Matthias Melcher Introduces Quicklook Of Stl-files For Mac Free

General Purpose I/O - Pin 26 can either be an input or output signal. Using the app, you can select whether you want the app to be an input or an output. If you select 'output', you can control the signal. Pin 26 on the internal serial slot is listed as a 'General Purpose I/O'. The says that this pin can be configured as either an input or output. The question is, how is this pin connected?

What GPIO or DIO pin is it connected to? Well the answer seems to be GPIO #9.

Matthias melcher introduces quicklook of stl-files for mac 2017

Again a little tweaking of Eckhart's code lets you call the relevant functions and toggle the pin. Also, you can configure the pin as an input, and things work as expected. From a hardware design perspective, however, this pin will likely be an output (pulled to ground) until your software configures it as an input. So your hardware should be tolerant of the pin as both an input and an output. One interesting note, is the (p 1-29) document lists this GPIO as 'Serial NOT CP Enable'.

This doesn't seem accurate. Also DIO #2 is listed as 'Available for Configuration to the Slot'. DIO #2 is the output we use to configure SerPortSel3. Perhaps there is a documentation error here and these signals are reversed.

Maybe these were reversed in the final hardware design and the documents were never updated. Its a mystery. 0x0026d050 SerialPort0LineDriverConfig16TVoyagerPlatformFUcT1 0x0026d094 SerialPort3LineDriverConfig16TVoyagerPlatformFUcT1 I took a look at the assembly for these functions and found them to be pretty simple. The first parameter seems to be a boolean and the second a bitfield. I'm not exactly sure what the second parameter does, but it changes the behavior of the function when it finds the 0x20 bit set. From what I can tell, for the Port3 function, you can leave the second parameter as 0x0 and the first parameter is a bool that controls the signal. For the Port0 function, the first parameter the logical inverse of the signal you want, and the second parameter should be 0x20.

Pin 1 PortSelect: This is the control signal to select between a peripheral in the internal Serial SLot and the Newton Interconnect Port. When the signal is low, the Newton Interconnect POrt may drive the Serail Port 3 Signals. When the signal is high, the Internal Serial Slot Peripheral may drive the Serial Port 3 Signals. Pin 8 gpSerPortSel This signal controls the LTC 1323 line driver for Serial Port 0 that drives the 26 pin Newton Interconnect Port. When Low, the Newton Interconnect Port can drive Serial Port 0. When high, the internal Serial Device can drive serial port 0 on the 32 pin connector. I seem to have an odd, recurring interest in the internal serial port on the MP2x00.

A few years back I tried to make an internal bluetooth module. It worked, but I never got the RF design correct so it didn't work well. Now, I'd like to try for an internal WiFi module. I'm more hopeful that I can get the antenna correct by using more off the shelf components and, worst case, an external antenna. The internal port was originally designed for an internal modem that was never produced.

Luckily, some of the design documents were leaked and are now available. The documents give you part of the picture, but there are omissions and errors that make the process a bit more of an exercise in reverse engineering. I wanted a breakout board that would help prototype and test the behavior of some of the GPIO pins and such. I came up with this.

The connector is a FTE-116-01-G-DV-ES. It is easier to find without the -ES option, FTE-116-01-G-DV-P for example is available from Newark electronics. The ES is just an end shroud, which while a nice thing, is not strictly necessary. I think the pins are a little longer than the original JAE connector, so it sits a little high. The case seems to close so I'm hopeful that it'll work for an internal card as well.

I had 20 of these boards made for $15. You'll have to solder the connector on there yourself, but if you're playing around with this sort of thing, you probably know how to handle surface mount pins of this size. The Apple Newton is still one of my favorite gadgets.

Even now, almost 20 years later, my Newton MessagePad can do things that a modern iPad cannot. Every six years or so I pull my Newton out of a drawer and it captures my interest. I don't blog, but I needed a place to post some content and images. Blogger seemed as good a place as any- its free, and likely will be around as long as Google is. I'm currently in one of my six year periods of fascination. When I loose interest again and the Newton takes its place back in the drawer, this information posted here hopefully will still be available for archival purposes.

Comments are closed.