Skip to content

Commit

Permalink
Updated gallery.py for new page break format.
Browse files Browse the repository at this point in the history
  • Loading branch information
nophead committed Feb 9, 2021
1 parent 4f9729c commit 60350eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 26 deletions.
23 changes: 0 additions & 23 deletions gallery/readme.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,30 @@
# A gallery of projects made with NopSCADlib
<a name="TOP"></a>
## ArduinoThermostat
Arduino thermostat to control a beer fridge to use it as an environmental chamber.

![](ArduinoThermostat.png)


<a name="TOP"></a>
## EnviroPlus
Environmental monitor using Enviro+ sensor board and a Raspberry Pi Zero.

![](EnviroPlus.png)


<a name="TOP"></a>
## FilamentDryBox
A small fan oven with a spool holder to keep the filament warm and dry.

![](FilamentDryBox.png)


<a name="TOP"></a>
## HydraBot
Current state of HydraRaptor after being modified for laser engraving.

![](HydraBot.png)


<a name="TOP"></a>
## IOT 50V PSU
WiFi controllable PSU

![](IOT_50V_PSU.png)


<a name="TOP"></a>
## Lab ATX PSU
Bench power supply built around an ATX PSU.

Expand All @@ -47,15 +37,11 @@ Bench power supply built around an ATX PSU.




<a name="TOP"></a>
## Laser Load
15kV dummy load for testing CO2 laser PSUs

![](Laser_load.png)


<a name="TOP"></a>
## MainsBreakOutBox
13A socket break out box with 4mm jacks to measure voltage and / or load current and earth leakage current.

Expand All @@ -72,38 +58,29 @@ Earth leakage can be measured Canadian CSA style by disconnected the neutral lin

![](MainsBreakOutBox.png)


<a name="TOP"></a>
## Mains Box
Mains isolated and variable supply with metering.

![](Mains_Box.png)




<a name="TOP"></a>
## SunBot
A solar tracker to keep a solar panel pointing at the sun.

![](SunBot.png)


<a name="TOP"></a>
## Turntable
WiFi enabled remote control turntable for photography

![](Turntable.png)

Was actually made from DiBond but shown made with carbon fibre here.


<a name="TOP"></a>
## Variac
Motorised variac with WiFi control, see [hydraraptor.blogspot.com/2018/04/esp8266-spi-spy](https://hydraraptor.blogspot.com/2018/04/esp8266-spi-spy.html)

![](Variac.png)




7 changes: 4 additions & 3 deletions scripts/gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ def gallery(force):
match = re.match(r"^(#+).*$", line)
if match:
line = '#' + line
if line == '---\n':
break;
print(line[:-1], file = output_file)
if line == '---\n' or line == '<span></span>\n':
break
if line != '<a name="TOP"></a>\n':
print(line[:-1], file = output_file)
else:
print(Fore.MAGENTA + "Can't find", document, Fore.WHITE);
with open(target_dir + "/readme.html", "wt") as html_file:
Expand Down

0 comments on commit 60350eb

Please sign in to comment.