|
EasyEDAEasyEDA
|
Spacecloner Mini
Hello all! I have presented you the Spacecloner Mini! It was inspired by a device I found on youtube, universal IR remote. And I became kinda inspired to make something of my own. This little guy uses an ATTINY85 20U to provide the brains of this build! I haven't built it yet because I need the actual PCB and parts, but updates WILL be coming soon. Stay tuned for that. I'm definitely gonna build this, but as of right now... it's up to you guys! The stuff you need is listed and... Enjoy! And also, I'm not expecting to win the challenge or anything, but I just really like spreading my information to other people and just generally making some people happy! So enjoy my really, really budget flipper zero! PS: Haven't worked on the code yet, I WILL get to that but as of right now people smarter than me are gonna have to code something, code by me IS coming I promise!
10/11/2024:
-------------------------------------------------------------------------------------------
Hey guys! I'm alive again... just wanted to remind you guys to check out the Spacecloner V3. I have more things coming but just a friendly reminder! Stay tuned for more!
9/23/2024:
-------------------------------------------------------------------------------------------
updateth log
hey guys im back! just wanted to let yall know whats goin on.
- Not releasing Spacecloner Nano until I finish the mini and V3
- Spacecloner V3 will come out some time this week.
- Spacecloner V3 will come out with code attached that actually is a cloner!!
- Spacecloner Mini might be not touched for a while. I'm struggling with making/uploading the code for the ATTINY85. I will be updating ASAP.
that concludes today's update log. real life pictures of the PCB coming shortly!
buh bye!!
9/13/2024:
-------------------------------------------------------------------------------------------
Update Log!!!!!
Hey everyone! Just wanted to let everyone know what I'm doing at the moment!
- Working on Spacecloner Nano (no idea why, just felt like we needed a whole family.)
- Publish date for Spacecloner V2 is still on track for the 20th, stay tuned for that!
- Developing a beta programming for the mini.
- Building the Spacecloner mini!!!
thats all... sorry for not alot... cya later!
9/10/2024:
-------------------------------------------------------------------------------------------
Update Log! (I published this thingy one day ago I know) but anywho, here's what happened!
- Added a REC button to the Spacecloner I thought it would be a good idea to add it because like... more buttons mean more fun, and two, it would be easier for me to program the actual cloning because I don't have to write a whole script to hold the button down and I thought I might as well use all the space I had on the PCB... But yeah, that's about it with the PCB for now... more coming soon.
- An ATTINY85 programmer because I hate how unorganized it looks on a breadboard so I decided to make my own programmer, it still uses an Arduino Uno and the labels on the PCB correspond to where you should put the wires. (if you don't know how to program an ATTINY85 with the Arduino Uno, watch a video about it on YouTube until I make my own...)
- Very, very primitive programming for using the IR transmitter but have not put in the REC button feature and the cloning, I WILL GET TO THAT I SWEAR! But, if you don't know how to translate IR signals and put it onto the code, I would watch a tutorial on YouTube, I will probably make a video soon...
- spacecloner v2 with 6 programmable buttons... hehehe
That's about it for this update log, more things with the Spacecloner Mini coming shortly. Hope you enjoy this update! Bye!
#include <IRremote.h>
const byte butonPin = 2; //button input pin
const byte IRPin = 1; // ir led output pin
void setup()
{
// connect button to ground and input
pinMode(butonPin, INPUT_PULLUP);
IrSender.begin(IRPin);
}
void loop()
{
static bool lastButtonState = HIGH;
bool buttonState = digitalRead(butonPin);
if (buttonState != lastButtonState)
{
if (digitalRead(butonPin) == HIGH) {
IrSender.sendNEC(0x3D00FF, 32); //ir signal goes here
}
lastButtonState = buttonState;
}
}
Spacecloner Mini
*PCBWay community is a sharing platform. We are not responsible for any design issues and parameter issues (board thickness, surface finish, etc.) you choose.
- Comments(2)
- Likes(3)
- Engineer Oct 01,2024
- Engineer Sep 10,2024
- Matthew Beatty Sep 10,2024
- 1 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
-
10design
-
8usability
-
7creativity
-
7content
More by Liam Alvarado
- Spacecloner Mini Hello all! I have presented you the Spacecloner Mini! It was inspired by a device I found on youtube...
- Spacecloner V3 Hello again everyone! Say hello to the Spacecloner V3! (pictures have a different image but PCB file...
- Spacecloner Mini Programmer Just for ATTINY85 chips in general. Used with the Arduino Uno and the pins you have to connect the p...
-
-
-
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
154 1 1 -
-