From ceri.clatworthy at gmail.com Sat Aug 8 22:57:08 2020 From: ceri.clatworthy at gmail.com (Ceri Clatworthy) Date: Sat, 8 Aug 2020 22:57:08 +0100 Subject: [Swansea Hackspace] (no subject) Message-ID: Hi all, I found this project: https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ Really fancied making something 'flashy' But I cannot get the code to compile, SPI hardware not defined, using softSPI or similar error. As you might know I am not an arduino fan, so well confused. I have an ESP8266 module, I have got A-N-Other wifi project to work so the module is OK. Anyone know how to fix it ?? Cheers Ceri Arduino: 1.8.9 (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), dtr (aka nodemcu), 26 MHz, 40MHz, DOUT (compatible), 1MB (FS:64KB OTA:~470KB), 2, nonos-sdk 2.2.1+100 (190703), v2 Lower Memory, Disabled, None, Only Sketch, 921600" In file included from C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:3:0: C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.003 # pragma message "FastLED version 3.003.003" ^ In file included from C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, from C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:3: C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output # pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output" ^ In file included from C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:48:0, from C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:3: C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h: In instantiation of 'class FastPin<7u>': C:\Users\3D\Documents\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:21:49: required from 'class ClocklessController<7, 20, 50, 30, (EOrder)66u, 0, false, 50>' C:\Users\3D\Documents\Arduino\libraries\FastLED/chipsets.h:582:7: required from 'class WS2812Controller800Khz<7u, (EOrder)66u>' C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:105:52: required from 'class WS2812B<7u, (EOrder)66u>' C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:302:39: required from 'static CLEDController& CFastLED::addLeds(CRGB*, int, int) [with CHIPSET = WS2812B; unsigned char DATA_PIN = 7u; EOrder RGB_ORDER = (EOrder)66u]' C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:70:78: required from here C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: error: static assertion failed: Invalid pin specified static_assert(validpin(), "Invalid pin specified"); ^ exit status 1 Error compiling for board Generic ESP8266 Module. This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: fire.ino Type: application/octet-stream Size: 8074 bytes Desc: not available URL: From keyz182 at gmail.com Sat Aug 8 23:18:22 2020 From: keyz182 at gmail.com (Kieran Evans) Date: Sat, 8 Aug 2020 23:18:22 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: I was playing with that library a few weeks ago. On an ESP32, but I can't imagine there's much difference. I'm AFK for a few days, but can dig into my code when I'm back to find some examples. Are you using the code exactly as is in the article? I can't see anything immediately obvious as wrong. There are some notes here https://github.com/FastLED/FastLED/wiki/ESP8266-notes for fastled on 8266. Maybe grab one of the example sketches from the examples directory in that repo to double check things are working? Possibly a library conflict or something? In the end I went with a Pi for my project. Found that the WiFi stack, and streaming fast updates to 100 LEDs was a bit much (I think it was interrupt issues, glitchy animations and such, had neither the time, patience, nor inclination to debug much further). This is what I achieved on Pi: https://www.youtube.com/playlist?list=PLB7cIuujCNRzK1zinSGFgpaQkX5MVJ3Iy With this code: https://github.com/keyz182/LEDServer I also use a fork I made of the rpi_ws281x library, because I'm a little reluctant to run a webserver to push some LEDs as root. That said, it's 100% optional, and I'd advise against trying it for now as I've not done any QC: https://github.com/keyz182/rpi_ws281x_serv As I said above, once back on my PC, I can grab the Arduino code I've messed with, and/or grab a spare 8266 and try the code in that article, but if you aren't tied to the idea of an esp8266, and have a pi zero or something spare, my stuff above could be an alternate starting point. On Sat, 8 Aug 2020, 22:58 Ceri Clatworthy, wrote: > > > Hi all, > > I found this project: > > > https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ > > > Really fancied making something 'flashy' > But I cannot get the code to compile, SPI hardware not defined, > using softSPI or similar error. > > As you might know I am not an arduino fan, so well confused. > > I have an ESP8266 module, I have got A-N-Other wifi project to work > so the module is OK. > > > Anyone know how to fix it ?? > > Cheers > > Ceri > > > > > > > > > > > Arduino: 1.8.9 (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, > Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), > dtr (aka nodemcu), 26 MHz, 40MHz, DOUT (compatible), 1MB (FS:64KB > OTA:~470KB), 2, nonos-sdk 2.2.1+100 (190703), v2 Lower Memory, Disabled, > None, Only Sketch, 921600" > > In file included from C:\Users\3D\Documents\Arduino\Fire > Lamp\fire\fire.ino:3:0: > > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: > #pragma message: FastLED version 3.003.003 > > # pragma message "FastLED version 3.003.003" > > ^ > > In file included from > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, > > from C:\Users\3D\Documents\Arduino\Fire > Lamp\fire\fire.ino:3: > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: > #pragma message: No hardware SPI pins defined. All SPI access will default > to bitbanged output > > # pragma message "No hardware SPI pins defined. All SPI access will > default to bitbanged output" > > ^ > > In file included from > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:48:0, > > from C:\Users\3D\Documents\Arduino\Fire > Lamp\fire\fire.ino:3: > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h: In > instantiation of 'class FastPin<7u>': > > C:\Users\3D\Documents\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:21:49: > required from 'class ClocklessController<7, 20, 50, 30, (EOrder)66u, 0, > false, 50>' > > C:\Users\3D\Documents\Arduino\libraries\FastLED/chipsets.h:582:7: > required from 'class WS2812Controller800Khz<7u, (EOrder)66u>' > > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:105:52: > required from 'class WS2812B<7u, (EOrder)66u>' > > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:302:39: > required from 'static CLEDController& CFastLED::addLeds(CRGB*, int, int) > [with CHIPSET = WS2812B; unsigned char DATA_PIN = 7u; EOrder RGB_ORDER = > (EOrder)66u]' > > C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:70:78: required > from here > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: error: > static assertion failed: Invalid pin specified > > static_assert(validpin(), "Invalid pin specified"); > > ^ > > exit status 1 > Error compiling for board Generic ESP8266 Module. > > This report would have more information with > "Show verbose output during compilation" > option enabled in File -> Preferences. > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ceri.clatworthy at gmail.com Sun Aug 9 10:05:46 2020 From: ceri.clatworthy at gmail.com (Ceri Clatworthy) Date: Sun, 9 Aug 2020 10:05:46 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: Thanks for getting back to me. I did try a few of the examples...Cylon basic flash and another... All with the same error. On Sat, 8 Aug 2020, 23:19 Kieran Evans, wrote: > I was playing with that library a few weeks ago. On an ESP32, but I can't > imagine there's much difference. I'm AFK for a few days, but can dig into > my code when I'm back to find some examples. > > > Are you using the code exactly as is in the article? I can't see anything > immediately obvious as wrong. There are some notes here > https://github.com/FastLED/FastLED/wiki/ESP8266-notes for fastled on > 8266. Maybe grab one of the example sketches from the examples directory in > that repo to double check things are working? Possibly a library conflict > or something? > > In the end I went with a Pi for my project. Found that the WiFi stack, and > streaming fast updates to 100 LEDs was a bit much (I think it was interrupt > issues, glitchy animations and such, had neither the time, patience, nor > inclination to debug much further). > > This is what I achieved on Pi: > https://www.youtube.com/playlist?list=PLB7cIuujCNRzK1zinSGFgpaQkX5MVJ3Iy > > With this code: > https://github.com/keyz182/LEDServer > > I also use a fork I made of the rpi_ws281x library, because I'm a little > reluctant to run a webserver to push some LEDs as root. That said, it's > 100% optional, and I'd advise against trying it for now as I've not done > any QC: https://github.com/keyz182/rpi_ws281x_serv > > As I said above, once back on my PC, I can grab the Arduino code I've > messed with, and/or grab a spare 8266 and try the code in that article, but > if you aren't tied to the idea of an esp8266, and have a pi zero or > something spare, my stuff above could be an alternate starting point. > > > > On Sat, 8 Aug 2020, 22:58 Ceri Clatworthy, > wrote: > >> >> >> Hi all, >> >> I found this project: >> >> >> https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ >> >> >> Really fancied making something 'flashy' >> But I cannot get the code to compile, SPI hardware not defined, >> using softSPI or similar error. >> >> As you might know I am not an arduino fan, so well confused. >> >> I have an ESP8266 module, I have got A-N-Other wifi project to work >> so the module is OK. >> >> >> Anyone know how to fix it ?? >> >> Cheers >> >> Ceri >> >> >> >> >> >> >> >> >> >> >> Arduino: 1.8.9 (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, >> Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), >> dtr (aka nodemcu), 26 MHz, 40MHz, DOUT (compatible), 1MB (FS:64KB >> OTA:~470KB), 2, nonos-sdk 2.2.1+100 (190703), v2 Lower Memory, Disabled, >> None, Only Sketch, 921600" >> >> In file included from C:\Users\3D\Documents\Arduino\Fire >> Lamp\fire\fire.ino:3:0: >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: >> #pragma message: FastLED version 3.003.003 >> >> # pragma message "FastLED version 3.003.003" >> >> ^ >> >> In file included from >> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, >> >> from C:\Users\3D\Documents\Arduino\Fire >> Lamp\fire\fire.ino:3: >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: >> #pragma message: No hardware SPI pins defined. All SPI access will default >> to bitbanged output >> >> # pragma message "No hardware SPI pins defined. All SPI access >> will default to bitbanged output" >> >> ^ >> >> In file included from >> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:48:0, >> >> from C:\Users\3D\Documents\Arduino\Fire >> Lamp\fire\fire.ino:3: >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h: In >> instantiation of 'class FastPin<7u>': >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:21:49: >> required from 'class ClocklessController<7, 20, 50, 30, (EOrder)66u, 0, >> false, 50>' >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/chipsets.h:582:7: >> required from 'class WS2812Controller800Khz<7u, (EOrder)66u>' >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:105:52: >> required from 'class WS2812B<7u, (EOrder)66u>' >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:302:39: >> required from 'static CLEDController& CFastLED::addLeds(CRGB*, int, int) >> [with CHIPSET = WS2812B; unsigned char DATA_PIN = 7u; EOrder RGB_ORDER = >> (EOrder)66u]' >> >> C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:70:78: required >> from here >> >> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: error: >> static assertion failed: Invalid pin specified >> >> static_assert(validpin(), "Invalid pin specified"); >> >> ^ >> >> exit status 1 >> Error compiling for board Generic ESP8266 Module. >> >> This report would have more information with >> "Show verbose output during compilation" >> option enabled in File -> Preferences. >> _______________________________________________ >> Hackspace mailing list >> Hackspace at swansea.hackspace.org.uk >> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >> > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From craigcogdell38 at gmail.com Sun Aug 9 10:07:17 2020 From: craigcogdell38 at gmail.com (Craig Cogdell) Date: Sun, 9 Aug 2020 10:07:17 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: Anybody know what this is plz guys, On Sun, 9 Aug 2020, 10:06 Ceri Clatworthy, wrote: > Thanks for getting back to me. > I did try a few of the examples...Cylon basic flash and another... > > All with the same error. > > > On Sat, 8 Aug 2020, 23:19 Kieran Evans, wrote: > >> I was playing with that library a few weeks ago. On an ESP32, but I can't >> imagine there's much difference. I'm AFK for a few days, but can dig into >> my code when I'm back to find some examples. >> >> >> Are you using the code exactly as is in the article? I can't see anything >> immediately obvious as wrong. There are some notes here >> https://github.com/FastLED/FastLED/wiki/ESP8266-notes for fastled on >> 8266. Maybe grab one of the example sketches from the examples directory in >> that repo to double check things are working? Possibly a library conflict >> or something? >> >> In the end I went with a Pi for my project. Found that the WiFi stack, >> and streaming fast updates to 100 LEDs was a bit much (I think it was >> interrupt issues, glitchy animations and such, had neither the time, >> patience, nor inclination to debug much further). >> >> This is what I achieved on Pi: >> https://www.youtube.com/playlist?list=PLB7cIuujCNRzK1zinSGFgpaQkX5MVJ3Iy >> >> With this code: >> https://github.com/keyz182/LEDServer >> >> I also use a fork I made of the rpi_ws281x library, because I'm a little >> reluctant to run a webserver to push some LEDs as root. That said, it's >> 100% optional, and I'd advise against trying it for now as I've not done >> any QC: https://github.com/keyz182/rpi_ws281x_serv >> >> As I said above, once back on my PC, I can grab the Arduino code I've >> messed with, and/or grab a spare 8266 and try the code in that article, but >> if you aren't tied to the idea of an esp8266, and have a pi zero or >> something spare, my stuff above could be an alternate starting point. >> >> >> >> On Sat, 8 Aug 2020, 22:58 Ceri Clatworthy, >> wrote: >> >>> >>> >>> Hi all, >>> >>> I found this project: >>> >>> >>> https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ >>> >>> >>> Really fancied making something 'flashy' >>> But I cannot get the code to compile, SPI hardware not defined, >>> using softSPI or similar error. >>> >>> As you might know I am not an arduino fan, so well confused. >>> >>> I have an ESP8266 module, I have got A-N-Other wifi project to work >>> so the module is OK. >>> >>> >>> Anyone know how to fix it ?? >>> >>> Cheers >>> >>> Ceri >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> Arduino: 1.8.9 (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, >>> Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), >>> dtr (aka nodemcu), 26 MHz, 40MHz, DOUT (compatible), 1MB (FS:64KB >>> OTA:~470KB), 2, nonos-sdk 2.2.1+100 (190703), v2 Lower Memory, Disabled, >>> None, Only Sketch, 921600" >>> >>> In file included from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3:0: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: >>> #pragma message: FastLED version 3.003.003 >>> >>> # pragma message "FastLED version 3.003.003" >>> >>> ^ >>> >>> In file included from >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, >>> >>> from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: >>> #pragma message: No hardware SPI pins defined. All SPI access will default >>> to bitbanged output >>> >>> # pragma message "No hardware SPI pins defined. All SPI access >>> will default to bitbanged output" >>> >>> ^ >>> >>> In file included from >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:48:0, >>> >>> from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h: In >>> instantiation of 'class FastPin<7u>': >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:21:49: >>> required from 'class ClocklessController<7, 20, 50, 30, (EOrder)66u, 0, >>> false, 50>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/chipsets.h:582:7: >>> required from 'class WS2812Controller800Khz<7u, (EOrder)66u>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:105:52: >>> required from 'class WS2812B<7u, (EOrder)66u>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:302:39: >>> required from 'static CLEDController& CFastLED::addLeds(CRGB*, int, int) >>> [with CHIPSET = WS2812B; unsigned char DATA_PIN = 7u; EOrder RGB_ORDER = >>> (EOrder)66u]' >>> >>> C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:70:78: required >>> from here >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: error: >>> static assertion failed: Invalid pin specified >>> >>> static_assert(validpin(), "Invalid pin specified"); >>> >>> ^ >>> >>> exit status 1 >>> Error compiling for board Generic ESP8266 Module. >>> >>> This report would have more information with >>> "Show verbose output during compilation" >>> option enabled in File -> Preferences. >>> _______________________________________________ >>> Hackspace mailing list >>> Hackspace at swansea.hackspace.org.uk >>> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >>> >> _______________________________________________ >> Hackspace mailing list >> Hackspace at swansea.hackspace.org.uk >> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >> > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 107564911_3179065875517776_3708483004488424149_n.mp4 Type: video/mp4 Size: 1612713 bytes Desc: not available URL: From keyz182 at gmail.com Sun Aug 9 10:20:51 2020 From: keyz182 at gmail.com (Kieran Evans) Date: Sun, 9 Aug 2020 10:20:51 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: Maybe some conflicting libraries? I'm with you on the distaste for Arduino, mainly from the dependency/library management which is next to non existent. PlatformIO is a little better, and support all the Arduino boards, but can be overkill. You could try renaming the Arduino folder (In documents on Windows, not sure on other platforms), and installing the esp platform and libraries from scratch in case there's a conflict. A somewhat nuclear option, but quicker than picking through libraries one by one. This is assuming you already had Arduino IDE set up previously, if you set it up from scratch just for this, then lib conflicts is unlikely to be the issue. Also, could you post up the exact error or a screenshot? Some of these libs pop up warnings in the console that look like errors but can be safely ignored. Can't quite tell with this one. On Sun, 9 Aug 2020, 10:06 Ceri Clatworthy, wrote: > Thanks for getting back to me. > I did try a few of the examples...Cylon basic flash and another... > > All with the same error. > > > On Sat, 8 Aug 2020, 23:19 Kieran Evans, wrote: > >> I was playing with that library a few weeks ago. On an ESP32, but I can't >> imagine there's much difference. I'm AFK for a few days, but can dig into >> my code when I'm back to find some examples. >> >> >> Are you using the code exactly as is in the article? I can't see anything >> immediately obvious as wrong. There are some notes here >> https://github.com/FastLED/FastLED/wiki/ESP8266-notes for fastled on >> 8266. Maybe grab one of the example sketches from the examples directory in >> that repo to double check things are working? Possibly a library conflict >> or something? >> >> In the end I went with a Pi for my project. Found that the WiFi stack, >> and streaming fast updates to 100 LEDs was a bit much (I think it was >> interrupt issues, glitchy animations and such, had neither the time, >> patience, nor inclination to debug much further). >> >> This is what I achieved on Pi: >> https://www.youtube.com/playlist?list=PLB7cIuujCNRzK1zinSGFgpaQkX5MVJ3Iy >> >> With this code: >> https://github.com/keyz182/LEDServer >> >> I also use a fork I made of the rpi_ws281x library, because I'm a little >> reluctant to run a webserver to push some LEDs as root. That said, it's >> 100% optional, and I'd advise against trying it for now as I've not done >> any QC: https://github.com/keyz182/rpi_ws281x_serv >> >> As I said above, once back on my PC, I can grab the Arduino code I've >> messed with, and/or grab a spare 8266 and try the code in that article, but >> if you aren't tied to the idea of an esp8266, and have a pi zero or >> something spare, my stuff above could be an alternate starting point. >> >> >> >> On Sat, 8 Aug 2020, 22:58 Ceri Clatworthy, >> wrote: >> >>> >>> >>> Hi all, >>> >>> I found this project: >>> >>> >>> https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ >>> >>> >>> Really fancied making something 'flashy' >>> But I cannot get the code to compile, SPI hardware not defined, >>> using softSPI or similar error. >>> >>> As you might know I am not an arduino fan, so well confused. >>> >>> I have an ESP8266 module, I have got A-N-Other wifi project to work >>> so the module is OK. >>> >>> >>> Anyone know how to fix it ?? >>> >>> Cheers >>> >>> Ceri >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> Arduino: 1.8.9 (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, >>> Flash, Legacy (new can return nullptr), All SSL ciphers (most compatible), >>> dtr (aka nodemcu), 26 MHz, 40MHz, DOUT (compatible), 1MB (FS:64KB >>> OTA:~470KB), 2, nonos-sdk 2.2.1+100 (190703), v2 Lower Memory, Disabled, >>> None, Only Sketch, 921600" >>> >>> In file included from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3:0: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: >>> #pragma message: FastLED version 3.003.003 >>> >>> # pragma message "FastLED version 3.003.003" >>> >>> ^ >>> >>> In file included from >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, >>> >>> from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: >>> #pragma message: No hardware SPI pins defined. All SPI access will default >>> to bitbanged output >>> >>> # pragma message "No hardware SPI pins defined. All SPI access >>> will default to bitbanged output" >>> >>> ^ >>> >>> In file included from >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:48:0, >>> >>> from C:\Users\3D\Documents\Arduino\Fire >>> Lamp\fire\fire.ino:3: >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h: In >>> instantiation of 'class FastPin<7u>': >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/platforms/esp/8266/clockless_esp8266.h:21:49: >>> required from 'class ClocklessController<7, 20, 50, 30, (EOrder)66u, 0, >>> false, 50>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/chipsets.h:582:7: >>> required from 'class WS2812Controller800Khz<7u, (EOrder)66u>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:105:52: >>> required from 'class WS2812B<7u, (EOrder)66u>' >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:302:39: >>> required from 'static CLEDController& CFastLED::addLeds(CRGB*, int, int) >>> [with CHIPSET = WS2812B; unsigned char DATA_PIN = 7u; EOrder RGB_ORDER = >>> (EOrder)66u]' >>> >>> C:\Users\3D\Documents\Arduino\Fire Lamp\fire\fire.ino:70:78: required >>> from here >>> >>> C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: error: >>> static assertion failed: Invalid pin specified >>> >>> static_assert(validpin(), "Invalid pin specified"); >>> >>> ^ >>> >>> exit status 1 >>> Error compiling for board Generic ESP8266 Module. >>> >>> This report would have more information with >>> "Show verbose output during compilation" >>> option enabled in File -> Preferences. >>> _______________________________________________ >>> Hackspace mailing list >>> Hackspace at swansea.hackspace.org.uk >>> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >>> >> _______________________________________________ >> Hackspace mailing list >> Hackspace at swansea.hackspace.org.uk >> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >> > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alice at swansea.hackspace.org.uk Sun Aug 9 18:16:09 2020 From: alice at swansea.hackspace.org.uk (Alice Mitchell) Date: Sun, 09 Aug 2020 18:16:09 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: On Sat, 2020-08-08 at 22:57 +0100, Ceri Clatworthy wrote: > > Hi all, > > I found this project: > > https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ > > Really fancied making something 'flashy' > But I cannot get the code to compile, SPI hardware not defined, > using softSPI or similar error. > > As you might know I am not an arduino fan, so well confused. > > I have an ESP8266 module, I have got A-N-Other wifi project to work > so the module is OK. > > > Anyone know how to fix it ?? > Oh jeez, the file as linked does not compile, all sorts of mess. tidying it up a bit i can get it to build. some important lines wound up as comments, some functions got called before they were defined. stuff like that. attached the fixed version. > In file included from > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, > > from C:\Users\3D\Documents\Arduino\Fire > Lamp\fire\fire.ino:3: > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: > note: #pragma message: No hardware SPI pins defined. All SPI access > will default to bitbanged output > > # pragma message "No hardware SPI pins defined. All SPI access > will default to bitbanged output" > this is a warning, it applies to all ESP devices and this library, just ignore it. > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: > error: static assertion failed: Invalid pin specified > > static_assert(validpin(), "Invalid pin specified"); > > ^ what did you change DATA_PIN to ? attached version compiles in Arduino 1.8.13 with esp8266 version 2.7.2 and FastLED 3.3.3 -------------- next part -------------- A non-text attachment was scrubbed... Name: fire.ino Type: text/x-arduino Size: 7714 bytes Desc: not available URL: From ceri.clatworthy at gmail.com Wed Aug 12 16:45:54 2020 From: ceri.clatworthy at gmail.com (Ceri Clatworthy) Date: Wed, 12 Aug 2020 16:45:54 +0100 Subject: [Swansea Hackspace] (no subject) In-Reply-To: References: Message-ID: Thank you, It now works .. now I have to get a lot more neopixels ... and a translucent tube... think i might print that though !! Cheers Ceri On Sun, Aug 9, 2020 at 6:17 PM Alice Mitchell < alice at swansea.hackspace.org.uk> wrote: > On Sat, 2020-08-08 at 22:57 +0100, Ceri Clatworthy wrote: > > > > Hi all, > > > > I found this project: > > > > > https://www.instructables.com/id/Play-With-Fire-Over-WIFI-ESP8266-Neopixels/ > > > > Really fancied making something 'flashy' > > But I cannot get the code to compile, SPI hardware not defined, > > using softSPI or similar error. > > > > As you might know I am not an arduino fan, so well confused. > > > > I have an ESP8266 module, I have got A-N-Other wifi project to work > > so the module is OK. > > > > > > Anyone know how to fix it ?? > > > > Oh jeez, the file as linked does not compile, all sorts of mess. > tidying it up a bit i can get it to build. > > some important lines wound up as comments, some functions got called > before they were defined. stuff like that. > attached the fixed version. > > > > > > In file included from > > C:\Users\3D\Documents\Arduino\libraries\FastLED/FastLED.h:65:0, > > > > from C:\Users\3D\Documents\Arduino\Fire > > Lamp\fire\fire.ino:3: > > > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: > > note: #pragma message: No hardware SPI pins defined. All SPI access > > will default to bitbanged output > > > > # pragma message "No hardware SPI pins defined. All SPI access > > will default to bitbanged output" > > > > this is a warning, it applies to all ESP devices and this library, just > ignore it. > > > > > C:\Users\3D\Documents\Arduino\libraries\FastLED/fastpin.h:207:2: > > error: static assertion failed: Invalid pin specified > > > > static_assert(validpin(), "Invalid pin specified"); > > > > ^ > > what did you change DATA_PIN to ? > > > > attached version compiles in Arduino 1.8.13 with esp8266 version 2.7.2 > and FastLED 3.3.3 > > > > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexmduffield at gmail.com Fri Aug 14 22:35:26 2020 From: alexmduffield at gmail.com (Alex Duffield) Date: Fri, 14 Aug 2020 22:35:26 +0100 Subject: [Swansea Hackspace] Home laser cutter Message-ID: So I've managed to score a Beasty laser tube from scotland on a road trip, came with literally everything appart from cnc frame which I already have so all together I should now have a complete unit bar building an enclosure for it, but I was wondering if anyone has any pitfalls or tips for collimating the whole system like how-to's and what not, also best practices to not blast a joke in my face haha -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: IMG_20200814_222335.jpg Type: image/jpeg Size: 3347314 bytes Desc: not available URL: From directors at swansea.hackspace.org.uk Sat Aug 29 19:06:35 2020 From: directors at swansea.hackspace.org.uk (Swansea Hackspace Directors) Date: Sat, 29 Aug 2020 19:06:35 +0100 Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space Message-ID: <20200829180635.px5gsickrikkb3bt@sucs.org> Hi all, This email is being sent directly to all paid members as well as to the mailing list. Yesterday afternoon (28th) the directors were sent notice from our landlord's letting agent that they have found someone willing to rent our space at the full commercial rate. We have therefore been given just 4 weeks to vacate and move everything out. This has always been a possibility, but the middle of a pandemic obviously isn't a great time to be finding new premises and we're having to proceed on the basis that we will not have a new home for the space before the end of our notice period. What you need to do: All personal property needs to be removed from the space before the 18th of September. Feel free to take your storage box with you. *** Any property remaining in the space after the 18th may be disposed of at the discretion of the directors *** If you are not able to visit the space before the 18th, please contact the directors to make other arrangements. The COVID-19 rules remain in place, so please let us know when you're planning to visit. We're also still open for bookings to use the space and our equipment as normal until the 18th. Non-keyholders please contact the directors or another keyholder to arrange for one of us to be present to open the space for you. For the purposes of collecting property we will relax the "one household at a time" rule, but please ensure that you remain at least 2m from members and other building occupants that are not part of your household or extended household, and consider wearing a face mask during your visit. The hackspace's own property will be stored until we can find ourselves new premises or we have exhausted all reasonable alternatives. If anyone is aware of suitable alternative premises, send the details (most importantly, including the price) to the directors: directors at swansea.hackspace.org.uk A link to the details from a letting agent/estate agent would be ideal, although we are also looking at those. We will be making further announcements about membership fees soon, and certainly before the next round of direct debits are processed. We will also email nearer the time looking for volunteers to help move everything out. Kind regards, Tom, Tim, Liz, Andy and Alice Directors, Swansea Hackspace From craigcogdell38 at gmail.com Sat Aug 29 19:21:02 2020 From: craigcogdell38 at gmail.com (Craig Cogdell) Date: Sat, 29 Aug 2020 19:21:02 +0100 Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space In-Reply-To: <20200829180635.px5gsickrikkb3bt@sucs.org> References: <20200829180635.px5gsickrikkb3bt@sucs.org> Message-ID: Not what I'd say normally but if this was ment to benefit the community then turning somebody away who was victim of electronic harassment who have been tortured with electronic harassment radio frequencies using raspberry pi's and linux operating systems development boards etc etc and speaking with you and having you block me like I said something wrong I cannot help myself even know people do benefit from your shops then you have the real world where people with nothing are being terrorised by people who have the skills your shops run so I cannot help myself but smile knowing you turned me away when i was really In need after my attackers ruined my life attacking me with radio frequencies now you have nee been asked to leave. . . . . Could nit have happened to a nice company next time maybe be more understanding and think in this what where ment to be able to help people in need people who ant got the skills with development boards and electronics and have no public funding. Thank you so much Anybody have the skills to develop technology that allows you to see from peoples eyes hear what they hear read thoughts all remotley feel free to msg me I have the technology i just need help putting it all together. Thank you Below is a video showing you this technology working this is not a camera but somebody eyes note the person blinking Craig On Sat, 29 Aug 2020, 19:07 Swansea Hackspace Directors, < directors at swansea.hackspace.org.uk> wrote: > Hi all, > > This email is being sent directly to all paid members as well as to the > mailing list. > > Yesterday afternoon (28th) the directors were sent notice from our > landlord's letting agent that they have found someone willing to rent > our space at the full commercial rate. We have therefore been given just > 4 weeks to vacate and move everything out. > > This has always been a possibility, but the middle of a pandemic > obviously isn't a great time to be finding new premises and we're having > to proceed on the basis that we will not have a new home for the space > before the end of our notice period. > > What you need to do: > > All personal property needs to be removed from the space before the > 18th of September. Feel free to take your storage box with you. > > *** Any property remaining in the space after the 18th may be disposed of > at the discretion of the directors *** > > If you are not able to visit the space before the 18th, please contact > the directors to make other arrangements. > > The COVID-19 rules remain in place, so please let us know when you're > planning to visit. We're also still open for bookings to use the space > and our equipment as normal until the 18th. > > Non-keyholders please contact the directors or another keyholder to > arrange for one of us to be present to open the space for you. For the > purposes of collecting property we will relax the "one household at a > time" rule, but please ensure that you remain at least 2m from members > and other building occupants that are not part of your household or > extended household, and consider wearing a face mask during your visit. > > The hackspace's own property will be stored until we can find ourselves > new premises or we have exhausted all reasonable alternatives. > > If anyone is aware of suitable alternative premises, send the details > (most importantly, including the price) to the directors: > directors at swansea.hackspace.org.uk > A link to the details from a letting agent/estate agent would be ideal, > although we are also looking at those. > > We will be making further announcements about membership fees soon, and > certainly before the next round of direct debits are processed. We will > also email nearer the time looking for volunteers to help move > everything out. > > Kind regards, > > Tom, Tim, Liz, Andy and Alice > Directors, Swansea Hackspace > > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 107564911_3179065875517776_3708483004488424149_n.mp4 Type: video/mp4 Size: 1612713 bytes Desc: not available URL: From alexmduffield at gmail.com Sat Aug 29 19:34:35 2020 From: alexmduffield at gmail.com (Alex Duffield) Date: Sat, 29 Aug 2020 19:34:35 +0100 Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space In-Reply-To: References: <20200829180635.px5gsickrikkb3bt@sucs.org> Message-ID: Wtf? On Sat, Aug 29, 2020, 7:21 PM Craig Cogdell wrote: > Not what I'd say normally but if this was ment to benefit the community > then turning somebody away who was victim of electronic harassment who have > been tortured with electronic harassment radio frequencies using raspberry > pi's and linux operating systems development boards etc etc and speaking > with you and having you block me like I said something wrong I cannot help > myself even know people do benefit from your shops then you have the real > world where people with nothing are being terrorised by people who have the > skills your shops run so I cannot help myself but smile knowing you turned > me away when i was really In need after my attackers ruined my life > attacking me with radio frequencies now you have nee been asked to leave. . > . . . > > Could nit have happened to a nice company next time maybe be more > understanding and think in this what where ment to be able to help people > in need people who ant got the skills with development boards and > electronics and have no public funding. Thank you so much > > Anybody have the skills to develop technology that allows you to see from > peoples eyes hear what they hear read thoughts all remotley feel free to > msg me I have the technology i just need help putting it all together. > > Thank you > > Below is a video showing you this technology working this is not a camera > but somebody eyes note the person blinking > > Craig > > On Sat, 29 Aug 2020, 19:07 Swansea Hackspace Directors, < > directors at swansea.hackspace.org.uk> wrote: > >> Hi all, >> >> This email is being sent directly to all paid members as well as to the >> mailing list. >> >> Yesterday afternoon (28th) the directors were sent notice from our >> landlord's letting agent that they have found someone willing to rent >> our space at the full commercial rate. We have therefore been given just >> 4 weeks to vacate and move everything out. >> >> This has always been a possibility, but the middle of a pandemic >> obviously isn't a great time to be finding new premises and we're having >> to proceed on the basis that we will not have a new home for the space >> before the end of our notice period. >> >> What you need to do: >> >> All personal property needs to be removed from the space before the >> 18th of September. Feel free to take your storage box with you. >> >> *** Any property remaining in the space after the 18th may be disposed of >> at the discretion of the directors *** >> >> If you are not able to visit the space before the 18th, please contact >> the directors to make other arrangements. >> >> The COVID-19 rules remain in place, so please let us know when you're >> planning to visit. We're also still open for bookings to use the space >> and our equipment as normal until the 18th. >> >> Non-keyholders please contact the directors or another keyholder to >> arrange for one of us to be present to open the space for you. For the >> purposes of collecting property we will relax the "one household at a >> time" rule, but please ensure that you remain at least 2m from members >> and other building occupants that are not part of your household or >> extended household, and consider wearing a face mask during your visit. >> >> The hackspace's own property will be stored until we can find ourselves >> new premises or we have exhausted all reasonable alternatives. >> >> If anyone is aware of suitable alternative premises, send the details >> (most importantly, including the price) to the directors: >> directors at swansea.hackspace.org.uk >> A link to the details from a letting agent/estate agent would be ideal, >> although we are also looking at those. >> >> We will be making further announcements about membership fees soon, and >> certainly before the next round of direct debits are processed. We will >> also email nearer the time looking for volunteers to help move >> everything out. >> >> Kind regards, >> >> Tom, Tim, Liz, Andy and Alice >> Directors, Swansea Hackspace >> >> _______________________________________________ >> Hackspace mailing list >> Hackspace at swansea.hackspace.org.uk >> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >> > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From craigcogdell38 at gmail.com Sat Aug 29 19:39:22 2020 From: craigcogdell38 at gmail.com (Craig Cogdell) Date: Sat, 29 Aug 2020 19:39:22 +0100 Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space In-Reply-To: References: <20200829180635.px5gsickrikkb3bt@sucs.org> Message-ID: You got skills Ashley with development boards and software defined radio if so hit me up if interested plz. On Sat, 29 Aug 2020, 19:35 Alex Duffield, wrote: > Wtf? > > On Sat, Aug 29, 2020, 7:21 PM Craig Cogdell > wrote: > >> Not what I'd say normally but if this was ment to benefit the community >> then turning somebody away who was victim of electronic harassment who have >> been tortured with electronic harassment radio frequencies using raspberry >> pi's and linux operating systems development boards etc etc and speaking >> with you and having you block me like I said something wrong I cannot help >> myself even know people do benefit from your shops then you have the real >> world where people with nothing are being terrorised by people who have the >> skills your shops run so I cannot help myself but smile knowing you turned >> me away when i was really In need after my attackers ruined my life >> attacking me with radio frequencies now you have nee been asked to leave. . >> . . . >> >> Could nit have happened to a nice company next time maybe be more >> understanding and think in this what where ment to be able to help people >> in need people who ant got the skills with development boards and >> electronics and have no public funding. Thank you so much >> >> Anybody have the skills to develop technology that allows you to see from >> peoples eyes hear what they hear read thoughts all remotley feel free to >> msg me I have the technology i just need help putting it all together. >> >> Thank you >> >> Below is a video showing you this technology working this is not a camera >> but somebody eyes note the person blinking >> >> Craig >> >> On Sat, 29 Aug 2020, 19:07 Swansea Hackspace Directors, < >> directors at swansea.hackspace.org.uk> wrote: >> >>> Hi all, >>> >>> This email is being sent directly to all paid members as well as to the >>> mailing list. >>> >>> Yesterday afternoon (28th) the directors were sent notice from our >>> landlord's letting agent that they have found someone willing to rent >>> our space at the full commercial rate. We have therefore been given just >>> 4 weeks to vacate and move everything out. >>> >>> This has always been a possibility, but the middle of a pandemic >>> obviously isn't a great time to be finding new premises and we're having >>> to proceed on the basis that we will not have a new home for the space >>> before the end of our notice period. >>> >>> What you need to do: >>> >>> All personal property needs to be removed from the space before the >>> 18th of September. Feel free to take your storage box with you. >>> >>> *** Any property remaining in the space after the 18th may be disposed of >>> at the discretion of the directors *** >>> >>> If you are not able to visit the space before the 18th, please contact >>> the directors to make other arrangements. >>> >>> The COVID-19 rules remain in place, so please let us know when you're >>> planning to visit. We're also still open for bookings to use the space >>> and our equipment as normal until the 18th. >>> >>> Non-keyholders please contact the directors or another keyholder to >>> arrange for one of us to be present to open the space for you. For the >>> purposes of collecting property we will relax the "one household at a >>> time" rule, but please ensure that you remain at least 2m from members >>> and other building occupants that are not part of your household or >>> extended household, and consider wearing a face mask during your visit. >>> >>> The hackspace's own property will be stored until we can find ourselves >>> new premises or we have exhausted all reasonable alternatives. >>> >>> If anyone is aware of suitable alternative premises, send the details >>> (most importantly, including the price) to the directors: >>> directors at swansea.hackspace.org.uk >>> A link to the details from a letting agent/estate agent would be ideal, >>> although we are also looking at those. >>> >>> We will be making further announcements about membership fees soon, and >>> certainly before the next round of direct debits are processed. We will >>> also email nearer the time looking for volunteers to help move >>> everything out. >>> >>> Kind regards, >>> >>> Tom, Tim, Liz, Andy and Alice >>> Directors, Swansea Hackspace >>> >>> _______________________________________________ >>> Hackspace mailing list >>> Hackspace at swansea.hackspace.org.uk >>> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >>> >> _______________________________________________ >> Hackspace mailing list >> Hackspace at swansea.hackspace.org.uk >> http://swansea.hackspace.org.uk/mailman/listinfo/hackspace >> > _______________________________________________ > Hackspace mailing list > Hackspace at swansea.hackspace.org.uk > http://swansea.hackspace.org.uk/mailman/listinfo/hackspace > -------------- next part -------------- An HTML attachment was scrubbed... URL: From punkaled at yahoo.co.uk Sat Aug 29 23:42:29 2020 From: punkaled at yahoo.co.uk (Aled) Date: Sat, 29 Aug 2020 22:42:29 +0000 (UTC) Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space In-Reply-To: References: <20200829180635.px5gsickrikkb3bt@sucs.org> Message-ID: <1919023118.332472.1598740949358@mail.yahoo.com> I once built a circuit which turned an led on and off with a button, I had to look out of my own eyes and use my mind control to move my finger onto the button to press it, is that the sort of skills you're looking for? On a more serious note, sad that we're getting turfed out, and strange at a time when there's so many offices and shops being left empty around town by businesses that suffered during the lockdown, at least there should be plenty of spaces looking for tenants soon enough though.What's the procedure for booking in to come and get stuff? And if I'm able to? I'd? be happy to help move some stuff to storage/new space, I have a (small) van.Cheers,Aled. On Saturday, 29 August 2020, 19:41:01 BST, Craig Cogdell wrote: You got skills Ashley with development boards and software defined radio if so hit me up if interested plz.?? On Sat, 29 Aug 2020, 19:35 Alex Duffield, wrote: Wtf? On Sat, Aug 29, 2020, 7:21 PM Craig Cogdell wrote: Not what I'd say normally but if this was ment to benefit the community then turning somebody away who was victim of electronic harassment who have been tortured with electronic harassment radio frequencies using raspberry pi's and linux operating systems development boards etc etc and speaking with you and having you block me like I said something wrong I cannot help myself even know people do benefit from your shops then you have the real world where people with nothing are being terrorised by people who have the skills your shops run so I cannot help myself but smile knowing you turned me away when i was really In? need after my attackers ruined my life attacking me with radio frequencies now you have nee been asked to leave. . . . .? Could nit have happened to a nice company next time maybe be more understanding and think in this what where ment to be able to help people in need people who ant got the skills with development boards and electronics and have no public funding.? Thank you so much? Anybody have the skills to develop technology that allows you to see from peoples eyes hear what they hear read thoughts all remotley feel free to msg me I have the technology i just need help putting it all together.?? Thank you? Below is a video showing you this technology working this is not a camera but somebody eyes note the person blinking? Craig? On Sat, 29 Aug 2020, 19:07 Swansea Hackspace Directors, wrote: Hi all, This email is being sent directly to all paid members as well as to the mailing list. Yesterday afternoon (28th) the directors were sent notice from our landlord's letting agent that they have found someone willing to rent our space at the full commercial rate. We have therefore been given just 4 weeks to vacate and move everything out. This has always been a possibility, but the middle of a pandemic obviously isn't a great time to be finding new premises and we're having to proceed on the basis that we will not have a new home for the space before the end of our notice period. What you need to do: All personal property needs to be removed from the space before the 18th of September. Feel free to take your storage box with you. *** Any property remaining in the space after the 18th may be disposed of at the discretion of the directors *** If you are not able to visit the space before the 18th, please contact the directors to make other arrangements. The COVID-19 rules remain in place, so please let us know when you're planning to visit. We're also still open for bookings to use the space and our equipment as normal until the 18th. Non-keyholders please contact the directors or another keyholder to arrange for one of us to be present to open the space for you. For the purposes of collecting property we will relax the "one household at a time" rule, but please ensure that you remain at least 2m from members and other building occupants that are not part of your household or extended household, and consider wearing a face mask during your visit. The hackspace's own property will be stored until we can find ourselves new premises or we have exhausted all reasonable alternatives. If anyone is aware of suitable alternative premises, send the details (most importantly, including the price) to the directors: directors at swansea.hackspace.org.uk A link to the details from a letting agent/estate agent would be ideal, although we are also looking at those. We will be making further announcements about membership fees soon, and certainly before the next round of direct debits are processed. We will also email nearer the time looking for volunteers to help move everything out. Kind regards, Tom, Tim, Liz, Andy and Alice Directors, Swansea Hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace -------------- next part -------------- An HTML attachment was scrubbed... URL: From andymrush at live.co.uk Sun Aug 30 10:45:13 2020 From: andymrush at live.co.uk (Andy Rush) Date: Sun, 30 Aug 2020 09:45:13 +0000 Subject: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space In-Reply-To: <1919023118.332472.1598740949358@mail.yahoo.com> References: <20200829180635.px5gsickrikkb3bt@sucs.org> , <1919023118.332472.1598740949358@mail.yahoo.com> Message-ID: Aled The procedure for booking is quite simple, just send an email to the directors@ address with a time, and we'll book you in for that time. If you've got a keyfob, you can let yourself in. If not, one of us directors will pop over and open doors. In the latter case, please wear a mask. Also, be aware that Wind street is now a pedestrian street, so parking there may not be viable. Ta Andy ________________________________ From: Hackspace on behalf of Aled Sent: 29 August 2020 23:42 To: Swansea Hackspace Subject: Re: [Swansea Hackspace] [Notice] We're moving out - End of the Wind Street Space I once built a circuit which turned an led on and off with a button, I had to look out of my own eyes and use my mind control to move my finger onto the button to press it, is that the sort of skills you're looking for? On a more serious note, sad that we're getting turfed out, and strange at a time when there's so many offices and shops being left empty around town by businesses that suffered during the lockdown, at least there should be plenty of spaces looking for tenants soon enough though. What's the procedure for booking in to come and get stuff? And if I'm able to I'd be happy to help move some stuff to storage/new space, I have a (small) van. Cheers, Aled. On Saturday, 29 August 2020, 19:41:01 BST, Craig Cogdell wrote: You got skills Ashley with development boards and software defined radio if so hit me up if interested plz. On Sat, 29 Aug 2020, 19:35 Alex Duffield, > wrote: Wtf? On Sat, Aug 29, 2020, 7:21 PM Craig Cogdell > wrote: Not what I'd say normally but if this was ment to benefit the community then turning somebody away who was victim of electronic harassment who have been tortured with electronic harassment radio frequencies using raspberry pi's and linux operating systems development boards etc etc and speaking with you and having you block me like I said something wrong I cannot help myself even know people do benefit from your shops then you have the real world where people with nothing are being terrorised by people who have the skills your shops run so I cannot help myself but smile knowing you turned me away when i was really In need after my attackers ruined my life attacking me with radio frequencies now you have nee been asked to leave. . . . . Could nit have happened to a nice company next time maybe be more understanding and think in this what where ment to be able to help people in need people who ant got the skills with development boards and electronics and have no public funding. Thank you so much Anybody have the skills to develop technology that allows you to see from peoples eyes hear what they hear read thoughts all remotley feel free to msg me I have the technology i just need help putting it all together. Thank you Below is a video showing you this technology working this is not a camera but somebody eyes note the person blinking Craig On Sat, 29 Aug 2020, 19:07 Swansea Hackspace Directors, > wrote: Hi all, This email is being sent directly to all paid members as well as to the mailing list. Yesterday afternoon (28th) the directors were sent notice from our landlord's letting agent that they have found someone willing to rent our space at the full commercial rate. We have therefore been given just 4 weeks to vacate and move everything out. This has always been a possibility, but the middle of a pandemic obviously isn't a great time to be finding new premises and we're having to proceed on the basis that we will not have a new home for the space before the end of our notice period. What you need to do: All personal property needs to be removed from the space before the 18th of September. Feel free to take your storage box with you. *** Any property remaining in the space after the 18th may be disposed of at the discretion of the directors *** If you are not able to visit the space before the 18th, please contact the directors to make other arrangements. The COVID-19 rules remain in place, so please let us know when you're planning to visit. We're also still open for bookings to use the space and our equipment as normal until the 18th. Non-keyholders please contact the directors or another keyholder to arrange for one of us to be present to open the space for you. For the purposes of collecting property we will relax the "one household at a time" rule, but please ensure that you remain at least 2m from members and other building occupants that are not part of your household or extended household, and consider wearing a face mask during your visit. The hackspace's own property will be stored until we can find ourselves new premises or we have exhausted all reasonable alternatives. If anyone is aware of suitable alternative premises, send the details (most importantly, including the price) to the directors: directors at swansea.hackspace.org.uk A link to the details from a letting agent/estate agent would be ideal, although we are also looking at those. We will be making further announcements about membership fees soon, and certainly before the next round of direct debits are processed. We will also email nearer the time looking for volunteers to help move everything out. Kind regards, Tom, Tim, Liz, Andy and Alice Directors, Swansea Hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace _______________________________________________ Hackspace mailing list Hackspace at swansea.hackspace.org.uk http://swansea.hackspace.org.uk/mailman/listinfo/hackspace -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andymrush at live.co.uk Sun Aug 30 21:25:16 2020 From: Andymrush at live.co.uk (Andy Rush) Date: Sun, 30 Aug 2020 20:25:16 +0000 Subject: [Swansea Hackspace] Open Saturdays- 5th and 12th September, 10am-7pm Message-ID: For the next two Saturdays, we'll be "opening" the Space to members without keyfobs so that they can collect any belongings of theirs stored in the Space. If you are a keyfob holder and can't make it down during the week, you can also turn up. - Wearing of facial masks will be required. - Social Distancing rules apply - 1 person at a time in the lift Regards Andy Director -------------- next part -------------- An HTML attachment was scrubbed... URL: